Subversion Repositories SmartDukaan

Rev

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

Rev 21778 Rev 21780
Line 1... Line 1...
1
package com.spice.profitmandi.web.request;
1
package com.spice.profitmandi.web.request;
2
 
2
 
-
 
3
import java.util.List;
3
import java.util.Set;
4
import java.util.Set;
4
 
5
 
5
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
6
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
6
 
7
 
7
public class CreateTagRequest {
8
public class CreateTagRequest {
8
	private String label;
9
	private String label;
9
	private TagType tagType;
10
	private TagType tagType;
10
	private String description;
11
	private String description;
11
	private boolean pinAll;
12
	private boolean pinAll;
12
	private boolean userAll;
13
	private boolean userAll;
13
	private Set<String> pinCodes;
14
	private List<String> pinCodes;
14
	private Set<Integer> retailerIds;
15
	private List<Integer> retailerIds;
15
	public String getLabel() {
16
	public String getLabel() {
16
		return label;
17
		return label;
17
	}
18
	}
18
	public void setLabel(String label) {
19
	public void setLabel(String label) {
19
		this.label = label;
20
		this.label = label;
Line 40... Line 41...
40
		return userAll;
41
		return userAll;
41
	}
42
	}
42
	public void setUserAll(boolean userAll) {
43
	public void setUserAll(boolean userAll) {
43
		this.userAll = userAll;
44
		this.userAll = userAll;
44
	}
45
	}
45
	public Set<String> getPinCodes() {
46
	public List<String> getPinCodes() {
46
		return pinCodes;
47
		return pinCodes;
47
	}
48
	}
48
	public void setPinCodes(Set<String> pinCodes) {
49
	public void setPinCodes(List<String> pinCodes) {
49
		this.pinCodes = pinCodes;
50
		this.pinCodes = pinCodes;
50
	}	
51
	}	
51
	
52
	
52
	public Set<Integer> getRetailerIds() {
53
	public List<Integer> getRetailerIds() {
53
		return retailerIds;
54
		return retailerIds;
54
	}
55
	}
55
	public void setRetailerIds(Set<Integer> rejectedUserIds) {
56
	public void setRetailerIds(List<Integer> rejectedUserIds) {
56
		this.retailerIds = rejectedUserIds;
57
		this.retailerIds = rejectedUserIds;
57
	}
58
	}
58
 
59
 
59
}
60
}