Subversion Repositories SmartDukaan

Rev

Rev 21760 | Rev 21778 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21750 ashik.ali 1
package com.spice.profitmandi.web.request;
2
 
21760 ashik.ali 3
import java.util.Set;
4
 
21750 ashik.ali 5
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
6
 
21763 ashik.ali 7
public class CreateTagRequest {
21750 ashik.ali 8
	private String label;
9
	private TagType tagType;
10
	private String description;
11
	private boolean pinAll;
12
	private boolean userAll;
21763 ashik.ali 13
	private Set<String> rejectedPinCodes;
14
	private Set<Integer> rejectedRetailerIds;
21750 ashik.ali 15
	public String getLabel() {
16
		return label;
17
	}
18
	public void setLabel(String label) {
19
		this.label = label;
20
	}
21
	public TagType getTagType() {
22
		return tagType;
23
	}
24
	public void setTagType(TagType tagType) {
25
		this.tagType = tagType;
26
	}
27
	public String getDescription() {
28
		return description;
29
	}
30
	public void setDescription(String description) {
31
		this.description = description;
32
	}
33
	public boolean isPinAll() {
34
		return pinAll;
35
	}
36
	public void setPinAll(boolean pinAll) {
37
		this.pinAll = pinAll;
38
	}
39
	public boolean isUserAll() {
40
		return userAll;
41
	}
42
	public void setUserAll(boolean userAll) {
43
		this.userAll = userAll;
44
	}
21763 ashik.ali 45
	public Set<String> getRejectedPinCodes() {
46
		return rejectedPinCodes;
21760 ashik.ali 47
	}
21763 ashik.ali 48
	public void setRejectedPinCodes(Set<String> pinCodes) {
49
		this.rejectedPinCodes = pinCodes;
50
	}	
51
 
52
	public Set<Integer> getRejectedRetailerIds() {
53
		return rejectedRetailerIds;
21760 ashik.ali 54
	}
21763 ashik.ali 55
	public void setRejectedRetailerIds(Set<Integer> rejectedUserIds) {
56
		this.rejectedRetailerIds = rejectedUserIds;
57
	}
21750 ashik.ali 58
 
59
}