Rev 490 | Rev 961 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.support.models;import com.thoughtworks.xstream.annotations.XStreamAlias;@XStreamAlias("update")public class Update {private String brand;private String model;private String color;private String quantity;private String timestamp;public void setBrand(String brand) {this.brand = brand;}public String getBrand() {return brand;}public void setModel(String model) {this.model = model;}public String getModel() {return model;}public void setColor(String color) {this.color = color;}public String getColor() {return color;}public void setQuantity(String quantity) {this.quantity = quantity;}public String getQuantity() {return quantity;}public void setTimestamp(String timestamp) {this.timestamp = timestamp;}public String getTimestamp() {return timestamp;}public String toString() {return this.brand+":" + this.model + ":" + this.color + ":" + this.quantity + ":" + this.timestamp;}}