Subversion Repositories SmartDukaan

Rev

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

Rev 10880 Rev 10892
Line 5... Line 5...
5
public class ContentPojo extends HeaderInfoPojo {
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
		super.setTitle(title);
11
		this.keySpecs = keySpecs;
11
		this.keySpecs = keySpecs;
12
		this.detailedSpecs = detailedSpecs;
12
		this.detailedSpecs = detailedSpecs;
13
		this.warranty = warranty;
13
		this.warranty = warranty;
14
	}
14
	}
15
	
15
	
16
	public ContentPojo(Long id) {
16
	public ContentPojo(Long id) {
17
		this.id = id;
17
		this.id = id;
18
	}
18
	}
19
	//Content
19
	//Content
20
	private Long id;
20
	private Long id;
21
	private String title;
-
 
22
	private String url;
21
	private String url;
23
	private List<String> keySpecs;
22
	private List<String> keySpecs;
24
	private List<SpecificationGroup> detailedSpecs;
23
	private List<SpecificationGroup> detailedSpecs;
25
	private List<ExpertReviewPojo> expertReviews;
24
	private List<ExpertReviewPojo> expertReviews;
26
	private String warranty;
25
	private String warranty;
Line 58... Line 57...
58
	
57
	
59
	private String offerText;
58
	private String offerText;
60
	//private EmiPojo bankEmis;
59
	//private EmiPojo bankEmis;
61
	private List<ItemPojo> items;
60
	private List<ItemPojo> items;
62
	
61
	
63
	public String getTitle() {
-
 
64
		return title;
-
 
65
	}
-
 
66
	public void setTitle(String title) {
-
 
67
		this.title = title;
-
 
68
	}
-
 
69
	public List<String> getKeySpecs() {
62
	public List<String> getKeySpecs() {
70
		return keySpecs;
63
		return keySpecs;
71
	}
64
	}
72
	public void setKeySpecs(List<String> keySpecs) {
65
	public void setKeySpecs(List<String> keySpecs) {
73
		this.keySpecs = keySpecs;
66
		this.keySpecs = keySpecs;