Subversion Repositories SmartDukaan

Rev

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

Rev 10892 Rev 12621
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
-
 
3
import in.shop2020.model.v1.catalog.ExclusiveAffiliateItemInfo;
-
 
4
 
3
import java.util.List;
5
import java.util.List;
4
 
6
 
5
public class ContentPojo extends HeaderInfoPojo {
7
public class ContentPojo extends HeaderInfoPojo {
6
	
8
	
7
	public ContentPojo(String title, List<String> keySpecs,
9
	public ContentPojo(String title, List<String> keySpecs,
Line 27... Line 29...
27
	private LogisticsInfoPojo logisticsInfo;
29
	private LogisticsInfoPojo logisticsInfo;
28
	private String name;
30
	private String name;
29
	private String categoryName;
31
	private String categoryName;
30
	private String categoryUrl;
32
	private String categoryUrl;
31
	private String breadCrumb;
33
	private String breadCrumb;
-
 
34
	private List<ExclusiveAffiliateItemInfo> exclusiveAffiliateInfo;
32
 
35
 
33
	//To be set at runtime
36
	//To be set at runtime
34
	private List<ProductPojo> reocmmendedAccessories;
37
	private List<ProductPojo> reocmmendedAccessories;
35
	public String getDefaultImageUrl() {
38
	public String getDefaultImageUrl() {
36
		return defaultImageUrl;
39
		return defaultImageUrl;
Line 199... Line 202...
199
	}
202
	}
200
 
203
 
201
	public String getName() {
204
	public String getName() {
202
		return name;
205
		return name;
203
	}
206
	}
-
 
207
 
-
 
208
	public void setExclusiveAffiliateInfo(List<ExclusiveAffiliateItemInfo> exclusiveAffiliateInfo) {
-
 
209
		this.exclusiveAffiliateInfo = exclusiveAffiliateInfo;
-
 
210
	}
-
 
211
 
-
 
212
	public List<ExclusiveAffiliateItemInfo> getExclusiveAffiliateInfo() {
-
 
213
		return exclusiveAffiliateInfo;
-
 
214
	}
204
}
215
}