Subversion Repositories SmartDukaan

Rev

Rev 4585 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4585 Rev 4765
Line 3... Line 3...
3
 
3
 
4
@XStreamAlias("billingupdate")
4
@XStreamAlias("billingupdate")
5
public class BillingUpdate {
5
public class BillingUpdate {
6
	private String orderId;
6
	private String orderId;
7
	private String invoiceNumber;
7
	private String invoiceNumber;
-
 
8
	private String color;
8
	private String billingTimestamp;
9
	private String billingTimestamp;
9
	
10
	
10
	public void setOrderId(String orderId) {
11
	public void setOrderId(String orderId) {
11
		this.orderId = orderId;
12
		this.orderId = orderId;
12
	}
13
	}
Line 24... Line 25...
24
	}
25
	}
25
	public String getBillingTimestamp() {
26
	public String getBillingTimestamp() {
26
		return billingTimestamp;
27
		return billingTimestamp;
27
	}
28
	}
28
 
29
 
-
 
30
	public void setColor(String color) {
-
 
31
		this.color = color;
-
 
32
	}
29
	@Override
33
	@Override
30
	public String toString() {
34
	public String toString() {
31
		return "BillingUpdate [orderId=" + orderId + ", invoiceNumber="
35
		return "BillingUpdate [orderId=" + orderId + ", invoiceNumber="
32
				+ invoiceNumber + ", billingTimestamp=" + billingTimestamp
36
				+ invoiceNumber + ", color=" + color + ", billingTimestamp="
-
 
37
				+ billingTimestamp + "]";
-
 
38
	}
-
 
39
	public String getColor() {
33
				+ "]";
40
		return color;
34
	}
41
	}
35
}
42
}