Subversion Repositories SmartDukaan

Rev

Rev 35795 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35795 Rev 37204
Line 36... Line 36...
36
	private String categoryName;
36
	private String categoryName;
37
	private String categoryUrl;
37
	private String categoryUrl;
38
	private String breadCrumb;
38
	private String breadCrumb;
39
	private float price;
39
	private float price;
40
    private String description;
40
    private String description;
-
 
41
	// Integer, never Long: legacy Mongo driver renders NumberLong as
-
 
42
	// {"$numberLong":...} which Gson cannot map. Stamped from catalog.catalog.
-
 
43
	private Integer categoryId;
-
 
44
	private List<CategorySpecPojo> categorySpecs;
41
 
45
 
42
	public float getPrice() {
46
	public float getPrice() {
43
		return price;
47
		return price;
44
	}
48
	}
45
 
49
 
46
	public void setPrice(float price) {
50
	public void setPrice(float price) {
47
		this.price = price;
51
		this.price = price;
48
	}
52
	}
49
 
53
 
-
 
54
	public Integer getCategoryId() {
-
 
55
		return categoryId;
-
 
56
	}
-
 
57
 
-
 
58
	public void setCategoryId(Integer categoryId) {
-
 
59
		this.categoryId = categoryId;
-
 
60
	}
-
 
61
 
-
 
62
	public List<CategorySpecPojo> getCategorySpecs() {
-
 
63
		return categorySpecs;
-
 
64
	}
-
 
65
 
-
 
66
	public void setCategorySpecs(List<CategorySpecPojo> categorySpecs) {
-
 
67
		this.categorySpecs = categorySpecs;
-
 
68
	}
-
 
69
 
50
	// To be set at runtime
70
	// To be set at runtime
51
	private List<ProductPojo> reocmmendedAccessories;
71
	private List<ProductPojo> reocmmendedAccessories;
52
 
72
 
53
	public String getDefaultImageUrl() {
73
	public String getDefaultImageUrl() {
54
		return defaultImageUrl;
74
		return defaultImageUrl;