Subversion Repositories SmartDukaan

Rev

Rev 21750 | Rev 21763 | 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 CreatePinCodeTagRequest {
        private String label;
        private TagType tagType;
        private String description;
        private boolean pinAll;
        private boolean userAll;
        private Set<String> pinCodes;
        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> getPinCodes() {
                return pinCodes;
        }
        public void setPinCodes(Set<String> pinCodes) {
                this.pinCodes = pinCodes;
        }

}