Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20424 kshitij.so 1
package com.hotspotstore.model;
2
 
3
import java.util.List;
4
 
5
 
6
public class FilterOptionPojo {
7
	private String value;
8
	private String key;
9
	private long count;
10
	private boolean selected;
11
	private List<FilterOptionPojo> nestedOptions;
12
 
13
 
14
	public String getValue() {
15
		return value;
16
	}
17
	public void setValue(String value) {
18
		this.value = value;
19
	}
20
	public long getCount() {
21
		return count;
22
	}
23
	public void setCount(long count) {
24
		this.count = count;
25
	}
26
	public boolean getSelected() {
27
		return selected;
28
	}
29
	public void setSelected(boolean selected) {
30
		this.selected = selected;
31
	}
32
 
33
 
34
	@Override
35
	public String toString() {
36
		return "FilterOptionPojo [value=" + value + ", count=" + count
37
		+ ", selected=" + selected + "]";
38
	}
39
	public void setNestedOptions(List<FilterOptionPojo> nestedOptions) {
40
		this.nestedOptions = nestedOptions;
41
	}
42
	public List<FilterOptionPojo> getNestedOptions() {
43
		return nestedOptions;
44
	}
45
	public void setKey(String key) {
46
		this.key = key;
47
	}
48
	public String getKey() {
49
		return key;
50
	}
51
}