Subversion Repositories SmartDukaan

Rev

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

Rev 21760 Rev 21763
Line 2... Line 2...
2
 
2
 
3
import java.util.Set;
3
import java.util.Set;
4
 
4
 
5
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
5
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
6
 
6
 
7
public class CreatePinCodeTagRequest {
7
public class CreateTagRequest {
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> pinCodes;
13
	private Set<String> rejectedPinCodes;
-
 
14
	private Set<Integer> rejectedRetailerIds;
14
	public String getLabel() {
15
	public String getLabel() {
15
		return label;
16
		return label;
16
	}
17
	}
17
	public void setLabel(String label) {
18
	public void setLabel(String label) {
18
		this.label = label;
19
		this.label = label;
Line 39... Line 40...
39
		return userAll;
40
		return userAll;
40
	}
41
	}
41
	public void setUserAll(boolean userAll) {
42
	public void setUserAll(boolean userAll) {
42
		this.userAll = userAll;
43
		this.userAll = userAll;
43
	}
44
	}
44
	public Set<String> getPinCodes() {
45
	public Set<String> getRejectedPinCodes() {
45
		return pinCodes;
46
		return rejectedPinCodes;
46
	}
47
	}
47
	public void setPinCodes(Set<String> pinCodes) {
48
	public void setRejectedPinCodes(Set<String> pinCodes) {
48
		this.pinCodes = pinCodes;
49
		this.rejectedPinCodes = pinCodes;
-
 
50
	}	
-
 
51
	
-
 
52
	public Set<Integer> getRejectedRetailerIds() {
-
 
53
		return rejectedRetailerIds;
-
 
54
	}
-
 
55
	public void setRejectedRetailerIds(Set<Integer> rejectedUserIds) {
-
 
56
		this.rejectedRetailerIds = rejectedUserIds;
49
	}
57
	}
50
 
58
 
51
}
59
}