Rev 21760 | Rev 21778 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.request;import java.util.Set;import com.spice.profitmandi.dao.enumuration.fofo.TagType;public class CreateTagRequest {private String label;private TagType tagType;private String description;private boolean pinAll;private boolean userAll;private Set<String> rejectedPinCodes;private Set<Integer> rejectedRetailerIds;public String getLabel() {return label;}public void setLabel(String label) {this.label = label;}public TagType getTagType() {return tagType;}public void setTagType(TagType tagType) {this.tagType = tagType;}public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}public boolean isPinAll() {return pinAll;}public void setPinAll(boolean pinAll) {this.pinAll = pinAll;}public boolean isUserAll() {return userAll;}public void setUserAll(boolean userAll) {this.userAll = userAll;}public Set<String> getRejectedPinCodes() {return rejectedPinCodes;}public void setRejectedPinCodes(Set<String> pinCodes) {this.rejectedPinCodes = pinCodes;}public Set<Integer> getRejectedRetailerIds() {return rejectedRetailerIds;}public void setRejectedRetailerIds(Set<Integer> rejectedUserIds) {this.rejectedRetailerIds = rejectedUserIds;}}