Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.metamodel.util;

import java.util.List;

public class Specification {
        
        private String name;
        private List<String> values;
        
        
        public Specification(String name, List<String> values) {
                super();
                this.name = name;
                this.values = values;
        }
        /**
         * @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 setValues(List<String> values) {
                this.values = values;
        }
        /**
         * @return the value
         */
        public List<String> getValues() {
                return values;
        } 
}