Subversion Repositories SmartDukaan

Rev

Rev 9220 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.mobileapi.serving.pojos;

public class Specification {
        
        private String name;
        private String value;
        
        
        public Specification(String name, String value) {
                super();
                this.name = name;
                this.value = value;
        }
        /**
         * @param name the name to set
         */
        public void setName(String name) {
                this.name = name;
        }
        /**
         * @return the name
         */
        public String getName() {
                return name;
        }
        /**
         * @param value the value to set
         */
        public void setValue(String value) {
                this.value = value;
        }
        /**
         * @return the value
         */
        public String getValue() {
                return value;
        } 
}