Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9218 amit.gupta 1
package in.shop2020.metamodel.util;
2
 
3
import java.util.List;
4
 
5
public class Specification {
6
 
7
	private String name;
8
	private List<String> values;
9
 
10
 
11
	public Specification(String name, List<String> values) {
12
		super();
13
		this.name = name;
14
		this.values = values;
15
	}
16
	/**
17
	 * @param name the name to set
18
	 */
19
	public void setName(String name) {
20
		this.name = name;
21
	}
22
	/**
23
	 * @return the name
24
	 */
25
	public String getName() {
26
		return name;
27
	}
28
	/**
29
	 * @param value the value to set
30
	 */
31
	public void setValues(List<String> values) {
32
		this.values = values;
33
	}
34
	/**
35
	 * @return the value
36
	 */
37
	public List<String> getValues() {
38
		return values;
39
	} 
40
}