Subversion Repositories SmartDukaan

Rev

Rev 961 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
490 rajveer 1
package in.shop2020.support.models;
2
import com.thoughtworks.xstream.annotations.XStreamAlias;
3
 
4
@XStreamAlias("update")
5
public class Update {
961 chandransh 6
	private String group;
616 chandransh 7
	private String brand;
8
	private String model;
9
	private String color;
490 rajveer 10
	private String quantity;
11
	private String timestamp;
616 chandransh 12
 
961 chandransh 13
	public void setGroup(String group) {
14
		this.group = group;
15
	}
16
	public String getGroup() {
17
		return group;
18
	}
616 chandransh 19
	public void setBrand(String brand) {
20
		this.brand = brand;
490 rajveer 21
	}
616 chandransh 22
	public String getBrand() {
23
		return brand;
490 rajveer 24
	}
616 chandransh 25
	public void setModel(String model) {
26
		this.model = model;
27
	}
28
	public String getModel() {
29
		return model;
30
	}
31
	public void setColor(String color) {
32
		this.color = color;
33
	}
34
	public String getColor() {
35
		return color;
36
	}
490 rajveer 37
	public void setQuantity(String quantity) {
38
		this.quantity = quantity;
39
	}
40
	public String getQuantity() {
41
		return quantity;
42
	}
43
	public void setTimestamp(String timestamp) {
44
		this.timestamp = timestamp;
45
	}
46
	public String getTimestamp() {
47
		return timestamp;
48
	}
49
	public String toString() {
961 chandransh 50
		return this.group + ":" + this.brand + ":" + this.model + ":" + this.color + ":" + this.quantity + ":" + this.timestamp;
490 rajveer 51
	}
52
}