Subversion Repositories SmartDukaan

Rev

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

Rev 9682 Rev 9808
Line 1... Line 1...
1
package in.shop2020.mobileapi.serving.pojos;
1
package in.shop2020.mobileapi.serving.pojos;
2
 
2
 
-
 
3
import in.shop2020.metamodel.util.LogisticsInfoPojo;
-
 
4
 
3
 
5
 
4
public class CartLinePojo {
6
public class CartLinePojo {
5
 
7
 
6
    private long itemId; // required
8
    private long itemId; // required
7
    private String name;
9
    private String name;
Line 15... Line 17...
15
    private double insuranceAmount; // required
17
    private double insuranceAmount; // required
16
    private boolean isDataProtectionAvailable;
18
    private boolean isDataProtectionAvailable;
17
    private long dataProtectionInsurer; // required
19
    private long dataProtectionInsurer; // required
18
    private double dataProtectionAmount; // required
20
    private double dataProtectionAmount; // required
19
    private String imageUrl; // required
21
    private String imageUrl; // required
-
 
22
    private LogisticsInfoPojo logisticsInfo;
20
    
23
    
21
    public long getItemId() {
24
    public long getItemId() {
22
        return itemId;
25
        return itemId;
23
    }
26
    }
24
    public void setItemId(long itemId) {
27
    public void setItemId(long itemId) {
Line 94... Line 97...
94
		this.imageUrl = imageUrl;
97
		this.imageUrl = imageUrl;
95
	}
98
	}
96
	public String getImageUrl() {
99
	public String getImageUrl() {
97
		return imageUrl;
100
		return imageUrl;
98
	}
101
	}
-
 
102
    public void setLogisticsInfo(LogisticsInfoPojo logisticsInfo) {
-
 
103
        this.logisticsInfo = logisticsInfo;
-
 
104
    }
-
 
105
    public LogisticsInfoPojo getLogisticsInfo() {
-
 
106
        return logisticsInfo;
-
 
107
    }
99
}
108
}