Subversion Repositories SmartDukaan

Rev

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

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