Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
32367 tejbeer 1
package com.spice.profitmandi.dao.model.thriwe.benefit;
2
 
3
public class Benefit {
4
    private String objectId;
5
    private String name;
6
    private String longDescription;
7
    private String shortDescription;
8
    private String redemptionProcess;
9
    private String thirdPartyUrl;
10
    private String configId;
11
    private String groupId;
12
    private int serviceWorth;
13
    private Partner partner;
14
    private Service service;
15
    private Images images;
16
 
17
    public String getObjectId() {
18
        return objectId;
19
    }
20
 
21
    public void setObjectId(String objectId) {
22
        this.objectId = objectId;
23
    }
24
 
25
    public String getName() {
26
        return name;
27
    }
28
 
29
    public void setName(String name) {
30
        this.name = name;
31
    }
32
 
33
    public String getLongDescription() {
34
        return longDescription;
35
    }
36
 
37
    public void setLongDescription(String longDescription) {
38
        this.longDescription = longDescription;
39
    }
40
 
41
    public String getShortDescription() {
42
        return shortDescription;
43
    }
44
 
45
    public void setShortDescription(String shortDescription) {
46
        this.shortDescription = shortDescription;
47
    }
48
 
49
    public String getRedemptionProcess() {
50
        return redemptionProcess;
51
    }
52
 
53
    public void setRedemptionProcess(String redemptionProcess) {
54
        this.redemptionProcess = redemptionProcess;
55
    }
56
 
57
    public String getThirdPartyUrl() {
58
        return thirdPartyUrl;
59
    }
60
 
61
    public void setThirdPartyUrl(String thirdPartyUrl) {
62
        this.thirdPartyUrl = thirdPartyUrl;
63
    }
64
 
65
    public String getConfigId() {
66
        return configId;
67
    }
68
 
69
    public void setConfigId(String configId) {
70
        this.configId = configId;
71
    }
72
 
73
    public String getGroupId() {
74
        return groupId;
75
    }
76
 
77
    public void setGroupId(String groupId) {
78
        this.groupId = groupId;
79
    }
80
 
81
    public int getServiceWorth() {
82
        return serviceWorth;
83
    }
84
 
85
    public void setServiceWorth(int serviceWorth) {
86
        this.serviceWorth = serviceWorth;
87
    }
88
 
89
    public Partner getPartner() {
90
        return partner;
91
    }
92
 
93
    public void setPartner(Partner partner) {
94
        this.partner = partner;
95
    }
96
 
97
    public Service getService() {
98
        return service;
99
    }
100
 
101
    public void setService(Service service) {
102
        this.service = service;
103
    }
104
 
105
    public Images getImages() {
106
        return images;
107
    }
108
 
109
    public void setImages(Images images) {
110
        this.images = images;
111
    }
112
 
113
    @Override
114
    public String toString() {
115
        return "Benefit [objectId=" + objectId + ", name=" + name + ", longDescription=" + longDescription + ", shortDescription=" + shortDescription + ", redemptionProcess=" + redemptionProcess + ", thirdPartyUrl=" + thirdPartyUrl + ", configId=" + configId + ", groupId=" + groupId + ", serviceWorth=" + serviceWorth + ", partner=" + partner + ", service=" + service + ", images=" + images + "]";
116
    }
117
 
118
}