Subversion Repositories SmartDukaan

Rev

Rev 9220 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9269 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
9220 amit.gupta 2
 
3
import java.util.List;
4
 
5
public class ContentPojo {
6
 
7
	public ContentPojo(String title, List<String> keySpecs,
8
			List<SpecificationGroup> detailedSpecs, String warranty,
9
			List<ImagePojo> images) {
10
		super();
11
		this.title = title;
12
		this.keySpecs = keySpecs;
13
		this.detailedSpecs = detailedSpecs;
14
		this.warranty = warranty;
15
		this.images = images;
16
	}
17
 
18
	private long id;
19
	private String title;
20
	private List<String> keySpecs;
21
	private List<SpecificationGroup> detailedSpecs;
22
	private String warranty;
23
	private List<ImagePojo> images;
24
 
25
	public String getTitle() {
26
		return title;
27
	}
28
	public void setTitle(String title) {
29
		this.title = title;
30
	}
31
	public List<String> getKeySpecs() {
32
		return keySpecs;
33
	}
34
	public void setKeySpecs(List<String> keySpecs) {
35
		this.keySpecs = keySpecs;
36
	}
37
	public List<SpecificationGroup> getDetailedSpecs() {
38
		return detailedSpecs;
39
	}
40
	public void setDetailedSpecs(List<SpecificationGroup> detailedSpecs) {
41
		this.detailedSpecs = detailedSpecs;
42
	}
43
	public String getWarranty() {
44
		return warranty;
45
	}
46
	public void setWarranty(String warranty) {
47
		this.warranty = warranty;
48
	}
49
	public List<ImagePojo> getImages() {
50
		return images;
51
	}
52
	public void setImages(List<ImagePojo> images) {
53
		this.images = images;
54
	}
55
	public void setId(long id) {
56
		this.id = id;
57
	}
58
	public long getId() {
59
		return id;
60
	}
61
}