Subversion Repositories SmartDukaan

Rev

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

Rev 21763 Rev 21778
Line 8... Line 8...
8
	private String label;
8
	private String label;
9
	private TagType tagType;
9
	private TagType tagType;
10
	private String description;
10
	private String description;
11
	private boolean pinAll;
11
	private boolean pinAll;
12
	private boolean userAll;
12
	private boolean userAll;
13
	private Set<String> rejectedPinCodes;
13
	private Set<String> pinCodes;
14
	private Set<Integer> rejectedRetailerIds;
14
	private Set<Integer> retailerIds;
15
	public String getLabel() {
15
	public String getLabel() {
16
		return label;
16
		return label;
17
	}
17
	}
18
	public void setLabel(String label) {
18
	public void setLabel(String label) {
19
		this.label = label;
19
		this.label = label;
Line 40... Line 40...
40
		return userAll;
40
		return userAll;
41
	}
41
	}
42
	public void setUserAll(boolean userAll) {
42
	public void setUserAll(boolean userAll) {
43
		this.userAll = userAll;
43
		this.userAll = userAll;
44
	}
44
	}
45
	public Set<String> getRejectedPinCodes() {
45
	public Set<String> getPinCodes() {
46
		return rejectedPinCodes;
46
		return pinCodes;
47
	}
47
	}
48
	public void setRejectedPinCodes(Set<String> pinCodes) {
48
	public void setPinCodes(Set<String> pinCodes) {
49
		this.rejectedPinCodes = pinCodes;
49
		this.pinCodes = pinCodes;
50
	}	
50
	}	
51
	
51
	
52
	public Set<Integer> getRejectedRetailerIds() {
52
	public Set<Integer> getRetailerIds() {
53
		return rejectedRetailerIds;
53
		return retailerIds;
54
	}
54
	}
55
	public void setRejectedRetailerIds(Set<Integer> rejectedUserIds) {
55
	public void setRetailerIds(Set<Integer> rejectedUserIds) {
56
		this.rejectedRetailerIds = rejectedUserIds;
56
		this.retailerIds = rejectedUserIds;
57
	}
57
	}
58
 
58
 
59
}
59
}