Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
3116 vikas 1
 
2
package in.shop2020.model;
3
 
4
import java.io.Serializable;
5
import java.util.Date;
6
 
7
import javax.jdo.annotations.IdentityType;
8
import javax.jdo.annotations.PersistenceCapable;
9
import javax.jdo.annotations.Persistent;
10
import javax.jdo.annotations.PrimaryKey;
11
 
12
@PersistenceCapable(identityType = IdentityType.APPLICATION)
13
public class ItemActivity implements Serializable {
14
    private static final long serialVersionUID = 799163332657086378L;
15
 
16
    @PrimaryKey
17
    @Persistent()
18
    private String key;
19
 
20
    @Persistent()
21
    private Long catalogId;
22
 
23
    @Persistent
24
    private Date date;
25
 
26
    @Persistent
27
    private Long view;
28
 
29
    @Persistent
30
    private Long addToCart;
31
 
32
    @Persistent
33
    private Long deleteFromCart;
34
 
35
    @Persistent
36
    private Long addToResearch;
37
 
38
    @Persistent
39
    private Long deleteFromResearch;
3238 vikas 40
 
3116 vikas 41
    @Persistent
3238 vikas 42
    private Long shippingAccess;
43
 
44
    @Persistent
45
    private Long orderCreation;
46
 
47
    @Persistent
48
    private Long proceedToPay;
49
 
50
    @Persistent
51
    private Long paymentFailure;
52
 
53
    @Persistent
54
    private Long paymentSuccess;
55
 
56
    @Persistent
3116 vikas 57
    private Long uniqueView;
58
 
59
    @Persistent
60
    private Long uniqueAddToCart;
61
 
62
    @Persistent
63
    private Long uniqueDeleteFromCart;
64
 
65
    @Persistent
66
    private Long uniqueAddToResearch;
67
 
68
    @Persistent
69
    private Long uniqueDeleteFromResearch;
3238 vikas 70
 
71
    @Persistent
72
    private Long uniqueShippingAccess;
73
 
74
    @Persistent
75
    private Long uniqueOrderCreation;
76
 
77
    @Persistent
78
    private Long uniqueProceedToPay;
79
 
80
    @Persistent
81
    private Long uniquePaymentFailure;
82
 
83
    @Persistent
84
    private Long uniquePaymentSuccess;
85
 
3116 vikas 86
 
87
    public void setCatalogId(Long catalogId) {
88
        this.catalogId = catalogId;
89
    }
90
 
91
    public Long getCatalogId() {
92
        return catalogId;
93
    }
94
 
95
    public Date getDate() {
96
        return date;
97
    }
98
 
99
    public void setDate(Date date) {
100
        this.date = date;
101
    }
102
 
103
    public Long getView() {
104
        return view;
105
    }
106
 
107
    public void setView(Long view) {
108
        this.view = view;
109
    }
110
 
111
    public Long getAddToCart() {
112
        return addToCart;
113
    }
114
 
115
    public void setAddToCart(Long addToCart) {
116
        this.addToCart = addToCart;
117
    }
118
 
119
    public Long getDeleteFromCart() {
120
        return deleteFromCart;
121
    }
122
 
123
    public void setDeleteFromCart(Long deleteFromCart) {
124
        this.deleteFromCart = deleteFromCart;
125
    }
126
 
127
    public Long getAddToResearch() {
128
        return addToResearch;
129
    }
130
 
131
    public void setAddToResearch(Long addToResearch) {
132
        this.addToResearch = addToResearch;
133
    }
134
 
135
    public Long getDeleteFromResearch() {
136
        return deleteFromResearch;
137
    }
138
 
139
    public void setDeleteFromResearch(Long deleteFromResearch) {
140
        this.deleteFromResearch = deleteFromResearch;
141
    }
142
 
3238 vikas 143
    public Long getShippingAccess() {
144
        return shippingAccess;
145
    }
146
 
147
    public void setShippingAccess(Long shippingAccess) {
148
        this.shippingAccess = shippingAccess;
149
    }
150
 
151
    public Long getOrderCreation() {
152
        return orderCreation;
153
    }
154
 
155
    public void setOrderCreation(Long orderCreation) {
156
        this.orderCreation = orderCreation;
157
    }
158
 
159
    public Long getProceedToPay() {
160
        return proceedToPay;
161
    }
162
 
163
    public void setProceedToPay(Long proceedToPay) {
164
        this.proceedToPay = proceedToPay;
165
    }
166
 
167
    public Long getPaymentFailure() {
168
        return paymentFailure;
169
    }
170
 
171
    public void setPaymentFailure(Long paymentFailure) {
172
        this.paymentFailure = paymentFailure;
173
    }
174
 
175
    public Long getPaymentSuccess() {
176
        return paymentSuccess;
177
    }
178
 
179
    public void setPaymentSuccess(Long paymentSuccess) {
180
        this.paymentSuccess = paymentSuccess;
181
    }
182
 
3116 vikas 183
    public void setKey(String key) {
184
        this.key = key;
185
    }
186
 
187
    public String getKey() {
188
        return key;
189
    }
3238 vikas 190
 
3116 vikas 191
    public Long getUniqueView() {
192
        return uniqueView;
193
    }
194
 
195
    public void setUniqueView(Long uniqueView) {
196
        this.uniqueView = uniqueView;
197
    }
198
 
199
    public Long getUniqueAddToCart() {
200
        return uniqueAddToCart;
201
    }
202
 
203
    public void setUniqueAddToCart(Long uniqueAddToCart) {
204
        this.uniqueAddToCart = uniqueAddToCart;
205
    }
206
 
207
    public Long getUniqueDeleteFromCart() {
208
        return uniqueDeleteFromCart;
209
    }
210
 
211
    public void setUniqueDeleteFromCart(Long uniqueDeleteFromCart) {
212
        this.uniqueDeleteFromCart = uniqueDeleteFromCart;
213
    }
214
 
215
    public Long getUniqueAddToResearch() {
216
        return uniqueAddToResearch;
217
    }
218
 
219
    public void setUniqueAddToResearch(Long uniqueAddToResearch) {
220
        this.uniqueAddToResearch = uniqueAddToResearch;
221
    }
222
 
223
    public Long getUniqueDeleteFromResearch() {
224
        return uniqueDeleteFromResearch;
225
    }
226
 
227
    public void setUniqueDeleteFromResearch(Long uniqueDeleteFromResearch) {
228
        this.uniqueDeleteFromResearch = uniqueDeleteFromResearch;
229
    }
3238 vikas 230
 
231
    public Long getUniqueShippingAccess() {
232
        return uniqueShippingAccess;
233
    }
234
 
235
    public void setUniqueShippingAccess(Long uniqueShippingAccess) {
236
        this.uniqueShippingAccess = uniqueShippingAccess;
237
    }
238
 
239
    public Long getUniqueOrderCreation() {
240
        return uniqueOrderCreation;
241
    }
242
 
243
    public void setUniqueOrderCreation(Long uniqueOrderCreation) {
244
        this.uniqueOrderCreation = uniqueOrderCreation;
245
    }
246
 
247
    public Long getUniqueProceedToPay() {
248
        return uniqueProceedToPay;
249
    }
250
 
251
    public void setUniqueProceedToPay(Long uniqueProceedToPay) {
252
        this.uniqueProceedToPay = uniqueProceedToPay;
253
    }
254
 
255
    public Long getUniquePaymentFailure() {
256
        return uniquePaymentFailure;
257
    }
258
 
259
    public void setUniquePaymentFailure(Long uniquePaymentFailure) {
260
        this.uniquePaymentFailure = uniquePaymentFailure;
261
    }
262
 
263
    public Long getUniquePaymentSuccess() {
264
        return uniquePaymentSuccess;
265
    }
266
 
267
    public void setUniquePaymentSuccess(Long uniquePaymentSuccess) {
268
        this.uniquePaymentSuccess = uniquePaymentSuccess;
269
    }
3116 vikas 270
}