Subversion Repositories SmartDukaan

Rev

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

Rev 9324 Rev 10682
Line 15... Line 15...
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;
21
	private String title;
22
	private String url;
22
	private String url;
23
	private List<String> keySpecs;
23
	private List<String> keySpecs;
24
	private List<SpecificationGroup> detailedSpecs;
24
	private List<SpecificationGroup> detailedSpecs;
25
	private List<ExpertReviewPojo> expertReviews;
25
	private List<ExpertReviewPojo> expertReviews;
Line 84... Line 84...
84
		return images;
84
		return images;
85
	}
85
	}
86
	public void setImages(List<MediaPojo> images) {
86
	public void setImages(List<MediaPojo> images) {
87
		this.images = images;
87
		this.images = images;
88
	}
88
	}
89
	public void setId(long id) {
89
	public void setId(Long id) {
90
		this.id = id;
90
		this.id = id;
91
	}
91
	}
92
	public long getId() {
92
	public Long getId() {
93
		return id;
93
		return id;
94
	}
94
	}
95
	
95
	
96
	public String getOfferText() {
96
	public String getOfferText() {
97
		return offerText;
97
		return offerText;