Subversion Repositories SmartDukaan

Rev

Rev 25880 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25880 Rev 25883
Line 9... Line 9...
9
 
9
 
10
	private String imageUrl;
10
	private String imageUrl;
11
	private float totalAmount;
11
	private float totalAmount;
12
	private int totalQuantity;
12
	private int totalQuantity;
13
 
13
 
14
	List<ItemQuantityPojo> itemAvailabilityPojos;
14
	private List<ItemQuantityPojo> itemQuantityPojos;
15
	List<FofoCatalogResponse> fofoCatalogResponses;
15
	private List<FofoCatalogResponse> fofoCatalogResponses;
16
 
16
 
17
	public int getId() {
17
	public int getId() {
18
		return id;
18
		return id;
19
	}
19
	}
20
 
20
 
21
	public void setId(int id) {
21
	public void setId(int id) {
22
		this.id = id;
22
		this.id = id;
23
	}
23
	}
-
 
24
	
-
 
25
	
-
 
26
 
-
 
27
	public List<ItemQuantityPojo> getItemQuantityPojos() {
-
 
28
		return itemQuantityPojos;
-
 
29
	}
-
 
30
 
-
 
31
	public void setItemQuantityPojos(List<ItemQuantityPojo> itemQuantityPojos) {
-
 
32
		this.itemQuantityPojos = itemQuantityPojos;
-
 
33
	}
-
 
34
 
-
 
35
	public List<FofoCatalogResponse> getFofoCatalogResponses() {
-
 
36
		return fofoCatalogResponses;
-
 
37
	}
-
 
38
 
-
 
39
	public void setFofoCatalogResponses(List<FofoCatalogResponse> fofoCatalogResponses) {
-
 
40
		this.fofoCatalogResponses = fofoCatalogResponses;
-
 
41
	}
24
 
42
 
25
	public String getTitle() {
43
	public String getTitle() {
26
		return title;
44
		return title;
27
	}
45
	}
28
 
46
 
Line 109... Line 127...
109
	}
127
	}
110
 
128
 
111
	@Override
129
	@Override
112
	public String toString() {
130
	public String toString() {
113
		return "Bucket [id=" + id + ", title=" + title + ", shortDescription=" + shortDescription + ", imageUrl="
131
		return "Bucket [id=" + id + ", title=" + title + ", shortDescription=" + shortDescription + ", imageUrl="
114
				+ imageUrl + ", totalAmount=" + totalAmount + ", totalValue=" + totalQuantity + "]";
132
				+ imageUrl + ", totalAmount=" + totalAmount + ", totalQuantity=" + totalQuantity
-
 
133
				+ ", itemQuantityPojos=" + itemQuantityPojos + ", fofoCatalogResponses=" + fofoCatalogResponses + "]";
115
	}
134
	}
116
}
135
}