Subversion Repositories SmartDukaan

Rev

Rev 1023 | 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 key;
        private String quantity;
        private String timestamp;

        public void setKey(String key) {
                this.key = key;
        }
        public String getKey() {
                return key;
        }
        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.key + ":" + this.quantity + ":" + this.timestamp;
        }
}