Subversion Repositories SmartDukaan

Rev

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

Rev 10682 Rev 10880
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
 
4
 
5
public class ContentPojo {
5
public class ContentPojo extends HeaderInfoPojo {
6
	
6
	
7
	public ContentPojo(String title, List<String> keySpecs,
7
	public ContentPojo(String title, List<String> keySpecs,
8
			List<SpecificationGroup> detailedSpecs, String warranty) {
8
			List<SpecificationGroup> detailedSpecs, String warranty) {
9
		super();
9
		super();
10
		this.title = title;
10
		this.title = title;
Line 24... Line 24...
24
	private List<SpecificationGroup> detailedSpecs;
24
	private List<SpecificationGroup> detailedSpecs;
25
	private List<ExpertReviewPojo> expertReviews;
25
	private List<ExpertReviewPojo> expertReviews;
26
	private String warranty;
26
	private String warranty;
27
	private String pinCode;
27
	private String pinCode;
28
	private LogisticsInfoPojo logisticsInfo;
28
	private LogisticsInfoPojo logisticsInfo;
-
 
29
	private String name;
-
 
30
	private String categoryName;
-
 
31
	private String categoryUrl;
-
 
32
	private String breadCrumb;
29
 
33
 
30
	//To be set at runtime
34
	//To be set at runtime
31
	private List<ProductPojo> reocmmendedAccessories;
35
	private List<ProductPojo> reocmmendedAccessories;
32
	public String getDefaultImageUrl() {
36
	public String getDefaultImageUrl() {
33
		return defaultImageUrl;
37
		return defaultImageUrl;
Line 170... Line 174...
170
	}
174
	}
171
 
175
 
172
	public LogisticsInfoPojo getLogisticsInfo() {
176
	public LogisticsInfoPojo getLogisticsInfo() {
173
		return logisticsInfo;
177
		return logisticsInfo;
174
	}
178
	}
-
 
179
 
-
 
180
	public void setCategoryName(String categoryName) {
-
 
181
		this.categoryName = categoryName;
-
 
182
	}
-
 
183
 
-
 
184
	public String getCategoryName() {
-
 
185
		return categoryName;
-
 
186
	}
-
 
187
 
-
 
188
	public void setCategoryUrl(String categoryUrl) {
-
 
189
		this.categoryUrl = categoryUrl;
-
 
190
	}
-
 
191
 
-
 
192
	public String getCategoryUrl() {
-
 
193
		return categoryUrl;
-
 
194
	}
-
 
195
 
-
 
196
	public void setBreadCrumb(String breadCrumb) {
-
 
197
		this.breadCrumb = breadCrumb;
-
 
198
	}
-
 
199
 
-
 
200
	public String getBreadCrumb() {
-
 
201
		return breadCrumb;
-
 
202
	}
-
 
203
 
-
 
204
	public void setName(String name) {
-
 
205
		this.name = name;
-
 
206
	}
-
 
207
 
-
 
208
	public String getName() {
-
 
209
		return name;
-
 
210
	}
175
}
211
}