Subversion Repositories SmartDukaan

Rev

Rev 30755 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30755 Rev 33616
Line 10... Line 10...
10
    private List<Integer> catalogIds;
10
    private List<Integer> catalogIds;
11
    private List<Integer> excludeCatalogIds;
11
    private List<Integer> excludeCatalogIds;
12
    private boolean smartPhone;
12
    private boolean smartPhone;
13
	private boolean featuredPhone;
13
	private boolean featuredPhone;
14
	private boolean led;
14
	private boolean led;
-
 
15
	private boolean smartWatch;
15
	private List<String> brands;
16
	private List<String> brands;
16
    private List<Integer> itemIds;
17
    private List<Integer> itemIds;
17
 
18
 
18
    public List<Integer> getExcludeCatalogIds() {
19
    public List<Integer> getExcludeCatalogIds() {
19
		return excludeCatalogIds;
20
		return excludeCatalogIds;
Line 141... Line 142...
141
 
142
 
142
	public void setLed(boolean led) {
143
	public void setLed(boolean led) {
143
		this.led = led;
144
		this.led = led;
144
	}
145
	}
145
 
146
 
-
 
147
	public boolean isSmartWatch() {
-
 
148
		return smartWatch;
-
 
149
	}
146
 
150
 
-
 
151
	public void setSmartWatch(boolean smartWatch) {
-
 
152
		this.smartWatch = smartWatch;
-
 
153
	}
147
}
154
}