Subversion Repositories SmartDukaan

Rev

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

Rev 10047 Rev 10358
Line 20... Line 20...
20
	private String status;
20
	private String status;
21
	private String courierName;
21
	private String courierName;
22
	private String awbNumber;
22
	private String awbNumber;
23
	private AddressPojo shippingAddress;
23
	private AddressPojo shippingAddress;
24
	private List<AddressPojo> allAddresses;
24
	private List<AddressPojo> allAddresses;
25
	private Boolean initiateCancellable;
-
 
26
	private Boolean requestCancellable;
25
	private Boolean isCancellable;
27
	private String color;
26
	private String color;
28
	public void setOrderId(long orderId) {
27
	public void setOrderId(long orderId) {
29
		this.orderId = orderId;
28
		this.orderId = orderId;
30
	}
29
	}
31
	public long getOrderId() {
30
	public long getOrderId() {
Line 122... Line 121...
122
	}
121
	}
123
	public String getUnitPrice() {
122
	public String getUnitPrice() {
124
		return unitPrice;
123
		return unitPrice;
125
	}
124
	}
126
 
125
 
127
	public void setRequestCancellable(boolean requestCancellable) {
-
 
128
		this.requestCancellable = requestCancellable;
-
 
129
	}
-
 
130
	public boolean isRequestCancellable() {
-
 
131
		return requestCancellable;
-
 
132
	}
-
 
133
	public void setInitiateCancellable(boolean initiateCancellable) {
-
 
134
		this.initiateCancellable = initiateCancellable;
-
 
135
	}
-
 
136
	public boolean isInitiateCancellable() {
-
 
137
		return initiateCancellable;
-
 
138
	}
-
 
139
	public void setShippingAddress(AddressPojo shippingAddress) {
126
	public void setShippingAddress(AddressPojo shippingAddress) {
140
		this.shippingAddress = shippingAddress;
127
		this.shippingAddress = shippingAddress;
141
	}
128
	}
142
	public AddressPojo getShippingAddress() {
129
	public AddressPojo getShippingAddress() {
143
		return shippingAddress;
130
		return shippingAddress;
Line 152... Line 139...
152
		this.color = color;
139
		this.color = color;
153
	}
140
	}
154
	public String getColor() {
141
	public String getColor() {
155
		return color;
142
		return color;
156
	}
143
	}
-
 
144
	public void setIsCancellable(Boolean isCancellable) {
-
 
145
		this.isCancellable = isCancellable;
-
 
146
	}
-
 
147
	public Boolean getIsCancellable() {
-
 
148
		return isCancellable;
-
 
149
	}
157
}
150
}