Subversion Repositories SmartDukaan

Rev

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

Rev 9667 Rev 9682
Line 14... Line 14...
14
    private long insurer; // required
14
    private long insurer; // required
15
    private double insuranceAmount; // required
15
    private double insuranceAmount; // required
16
    private boolean isDataProtectionAvailable;
16
    private boolean isDataProtectionAvailable;
17
    private long dataProtectionInsurer; // required
17
    private long dataProtectionInsurer; // required
18
    private double dataProtectionAmount; // required
18
    private double dataProtectionAmount; // required
-
 
19
    private String imageUrl; // required
19
    
20
    
20
    public long getItemId() {
21
    public long getItemId() {
21
        return itemId;
22
        return itemId;
22
    }
23
    }
23
    public void setItemId(long itemId) {
24
    public void setItemId(long itemId) {
Line 87... Line 88...
87
        return color;
88
        return color;
88
    }
89
    }
89
    public void setColor(String color) {
90
    public void setColor(String color) {
90
        this.color = color;
91
        this.color = color;
91
    }
92
    }
-
 
93
	public void setImageUrl(String imageUrl) {
-
 
94
		this.imageUrl = imageUrl;
-
 
95
	}
-
 
96
	public String getImageUrl() {
-
 
97
		return imageUrl;
-
 
98
	}
92
}
99
}