KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > portlets > event_registrations > model > WebEventRegistration


1 package com.dotmarketing.portlets.event_registrations.model;
2
3 import com.dotmarketing.beans.Inode;
4
5 public class WebEventRegistration extends Inode {
6
7     private static final long serialVersionUID = 1L;
8     
9     private long eventInode; //persistent
10
private long eventLocationInode; //persistent
11
private long userInode; //persistent
12
private int registrationStatus; //persistent
13
private java.util.Date JavaDoc datePosted; //persistent
14
private java.util.Date JavaDoc lastModDate; //persistent
15
private float totalPaid; //persistent
16
private float totalDue; //persistent
17
private float totalRegistration;
18     private int paymentType; //persistent
19
private String JavaDoc billingAddress1; //persistent
20
private String JavaDoc billingAddress2; //persistent
21
private String JavaDoc billingCity; //persistent
22
private String JavaDoc billingState; //persistent
23
private String JavaDoc billingZip; //persistent
24
private String JavaDoc billingCountry; // persistent
25
private String JavaDoc billingContactName; //persistent
26
private String JavaDoc billingContactPhone; //persistent
27
private String JavaDoc billingContactEmail; //persistent
28
private String JavaDoc cardName; //persistent
29
private String JavaDoc cardType; //persistent
30
private String JavaDoc cardNumber; //persistent
31
private String JavaDoc cardExpMonth;
32     private String JavaDoc cardExpYear;
33     private String JavaDoc cardVerificationValue; //persistent
34
private String JavaDoc checkNumber; //persistent
35
private String JavaDoc checkBankName; //persistent
36
private String JavaDoc poNumber; //persistent
37
private String JavaDoc invoiceNumber; //persistent
38
private boolean badgePrinted; //persistent
39
private String JavaDoc howDidYouHear; //persistent
40
private String JavaDoc ceoName; //persistent
41
private boolean modified_QB; // persistent
42
private boolean reminderEmailSent;
43     private boolean postEmailSent;
44
45     public WebEventRegistration(long eventInode, long eventLocationInode, long userInode, int registrationStatus, java.util.Date JavaDoc datePosted, java.util.Date JavaDoc lastModDate, int totalPaid, int totalDue, int paymentType, String JavaDoc billingAddress1, String JavaDoc billingAddress2, String JavaDoc billingCity, String JavaDoc billingState, String JavaDoc billingZip, String JavaDoc billingContactName, String JavaDoc billingContactPhone, String JavaDoc billingContactEmail, String JavaDoc cardName, String JavaDoc cardType, String JavaDoc cardNumber, String JavaDoc cardVerificationValue, String JavaDoc checkNumber, String JavaDoc checkBankName, String JavaDoc poNumber, String JavaDoc invoiceNumber, boolean badgePrinted, String JavaDoc howDidYouHear, String JavaDoc ceoName) {
46         this.eventInode = eventInode;
47         this.eventLocationInode = eventLocationInode;
48         this.userInode = userInode;
49         this.registrationStatus = registrationStatus;
50         this.datePosted = datePosted;
51         this.lastModDate = lastModDate;
52         this.totalPaid = totalPaid;
53         this.totalDue = totalDue;
54         this.paymentType = paymentType;
55         this.billingAddress1 = billingAddress1;
56         this.billingAddress2 = billingAddress2;
57         this.billingCity = billingCity;
58         this.billingState = billingState;
59         this.billingZip = billingZip;
60         this.billingContactName = billingContactName;
61         this.billingContactPhone = billingContactPhone;
62         this.billingContactEmail = billingContactEmail;
63         this.cardName = cardName;
64         this.cardType = cardType;
65         this.cardNumber = cardNumber;
66         this.cardVerificationValue = cardVerificationValue;
67         this.checkNumber = checkNumber;
68         this.checkBankName = checkBankName;
69         this.poNumber = poNumber;
70         this.invoiceNumber = invoiceNumber;
71         this.badgePrinted = badgePrinted;
72         this.howDidYouHear = howDidYouHear;
73         this.ceoName = ceoName;
74         this.modified_QB = true;
75     }
76
77     public WebEventRegistration() {
78         this.modified_QB = true;
79     }
80
81     public WebEventRegistration(long eventInode, long eventLocationInode, long userInode) {
82         this.eventInode = eventInode;
83         this.eventLocationInode = eventLocationInode;
84         this.userInode = userInode;
85         this.modified_QB = true;
86     }
87
88     public long getEventInode() {
89         return this.eventInode;
90     }
91
92     public void setEventInode(long eventInode) {
93         this.eventInode = eventInode;
94     }
95     public long getEventLocationInode() {
96         return this.eventLocationInode;
97     }
98
99     public void setEventLocationInode(long eventLocationInode) {
100         this.eventLocationInode = eventLocationInode;
101     }
102     public long getUserInode() {
103         return this.userInode;
104     }
105
106     public void setUserInode(long userInode) {
107         this.userInode = userInode;
108     }
109     public int getRegistrationStatus() {
110         return this.registrationStatus;
111     }
112
113     public void setRegistrationStatus(int registrationStatus) {
114         this.registrationStatus = registrationStatus;
115     }
116     public java.util.Date JavaDoc getDatePosted() {
117         return this.datePosted;
118     }
119
120     public void setDatePosted(java.util.Date JavaDoc datePosted) {
121         this.datePosted = datePosted;
122     }
123     public java.util.Date JavaDoc getLastModDate() {
124         return this.lastModDate;
125     }
126
127     public void setLastModDate(java.util.Date JavaDoc lastModDate) {
128         this.lastModDate = lastModDate;
129     }
130     public float getTotalPaid() {
131         return this.totalPaid;
132     }
133
134     public void setTotalPaid(float totalPaid) {
135         this.totalPaid = totalPaid;
136     }
137     public float getTotalDue() {
138         return this.totalDue;
139     }
140
141     public void setTotalDue(float totalDue) {
142         this.totalDue = totalDue;
143     }
144     public int getPaymentType() {
145         return this.paymentType;
146     }
147
148     public void setPaymentType(int paymentType) {
149         this.paymentType = paymentType;
150     }
151     public String JavaDoc getBillingAddress1() {
152         return this.billingAddress1;
153     }
154
155     public void setBillingAddress1(String JavaDoc billingAddress1) {
156         this.billingAddress1 = billingAddress1;
157     }
158     public String JavaDoc getBillingAddress2() {
159         return this.billingAddress2;
160     }
161
162     public void setBillingAddress2(String JavaDoc billingAddress2) {
163         this.billingAddress2 = billingAddress2;
164     }
165     public String JavaDoc getBillingCity() {
166         return this.billingCity;
167     }
168
169     public void setBillingCity(String JavaDoc billingCity) {
170         this.billingCity = billingCity;
171     }
172     public String JavaDoc getBillingState() {
173         return this.billingState;
174     }
175
176     public void setBillingState(String JavaDoc billingState) {
177         this.billingState = billingState;
178     }
179     public String JavaDoc getBillingZip() {
180         return this.billingZip;
181     }
182
183     public void setBillingZip(String JavaDoc billingZip) {
184         this.billingZip = billingZip;
185     }
186     public String JavaDoc getBillingContactName() {
187         return this.billingContactName;
188     }
189
190     public void setBillingContactName(String JavaDoc billingContactName) {
191         this.billingContactName = billingContactName;
192     }
193     public String JavaDoc getBillingContactPhone() {
194         return this.billingContactPhone;
195     }
196
197     public void setBillingContactPhone(String JavaDoc billingContactPhone) {
198         this.billingContactPhone = billingContactPhone;
199     }
200     public String JavaDoc getBillingContactEmail() {
201         return this.billingContactEmail;
202     }
203
204     public void setBillingContactEmail(String JavaDoc billingContactEmail) {
205         this.billingContactEmail = billingContactEmail;
206     }
207     public String JavaDoc getCardName() {
208         return this.cardName;
209     }
210
211     public void setCardName(String JavaDoc cardName) {
212         this.cardName = cardName;
213     }
214     public String JavaDoc getCardType() {
215         return this.cardType;
216     }
217
218     public void setCardType(String JavaDoc cardType) {
219         this.cardType = cardType;
220     }
221     public String JavaDoc getCardNumber() {
222         return this.cardNumber;
223     }
224
225     public void setCardNumber(String JavaDoc cardNumber) {
226         this.cardNumber = cardNumber;
227     }
228
229     /**
230      * @return Returns the cardExpMonth.
231      */

232     public String JavaDoc getCardExpMonth() {
233         return cardExpMonth;
234     }
235
236     /**
237      * @param cardExpMonth The cardExpMonth to set.
238      */

239     public void setCardExpMonth(String JavaDoc cardExpMonth) {
240         this.cardExpMonth = cardExpMonth;
241     }
242
243     /**
244      * @return Returns the cardExpYear.
245      */

246     public String JavaDoc getCardExpYear() {
247         return cardExpYear;
248     }
249
250     /**
251      * @param cardExpYear The cardExpYear to set.
252      */

253     public void setCardExpYear(String JavaDoc cardExpYear) {
254         this.cardExpYear = cardExpYear;
255     }
256
257     public String JavaDoc getCardVerificationValue() {
258         return this.cardVerificationValue;
259     }
260
261     public void setCardVerificationValue(String JavaDoc cardVerificationValue) {
262         this.cardVerificationValue = cardVerificationValue;
263     }
264     public String JavaDoc getCheckNumber() {
265         return this.checkNumber;
266     }
267
268     public void setCheckNumber(String JavaDoc checkNumber) {
269         this.checkNumber = checkNumber;
270     }
271     public String JavaDoc getCheckBankName() {
272         return this.checkBankName;
273     }
274
275     public void setCheckBankName(String JavaDoc checkBankName) {
276         this.checkBankName = checkBankName;
277     }
278     public String JavaDoc getPoNumber() {
279         return this.poNumber;
280     }
281
282     public void setPoNumber(String JavaDoc poNumber) {
283         this.poNumber = poNumber;
284     }
285     public String JavaDoc getInvoiceNumber() {
286         return this.invoiceNumber;
287     }
288
289     public void setInvoiceNumber(String JavaDoc invoiceNumber) {
290         this.invoiceNumber = invoiceNumber;
291     }
292     public String JavaDoc getHowDidYouHear() {
293         return this.howDidYouHear;
294     }
295
296     public void setHowDidYouHear(String JavaDoc howDidYouHear) {
297         this.howDidYouHear = howDidYouHear;
298     }
299     public String JavaDoc getCeoName() {
300         return this.ceoName;
301     }
302
303     public void setCeoName(String JavaDoc ceoName) {
304         this.ceoName = ceoName;
305     }
306
307     /**
308      * @return Returns the badgePrinted.
309      */

310     public boolean isBadgePrinted() {
311         return badgePrinted;
312     }
313
314     /**
315      * @param badgePrinted The badgePrinted to set.
316      */

317     public void setBadgePrinted(boolean badgePrinted) {
318         this.badgePrinted = badgePrinted;
319     }
320
321     /**
322      * @return Returns the totalRegistration.
323      */

324     public float getTotalRegistration() {
325         return totalRegistration;
326     }
327
328     /**
329      * @param totalRegistration The totalRegistration to set.
330      */

331     public void setTotalRegistration(float totalRegistration) {
332         this.totalRegistration = totalRegistration;
333     }
334     
335     /**
336      * @return Returns the modified_QB.
337      */

338     public boolean isModified_QB() {
339         return modified_QB;
340     }
341
342     /**
343      * @param modified_QB
344      * The modified_QB to set.
345      */

346     public void setModified_QB(boolean modified_QB) {
347         this.modified_QB = modified_QB;
348     }
349
350     /**
351      * @return Returns the postEmailSent.
352      */

353     public boolean isPostEmailSent() {
354         return postEmailSent;
355     }
356
357     /**
358      * @param postEmailSent The postEmailSent to set.
359      */

360     public void setPostEmailSent(boolean postEmailSent) {
361         this.postEmailSent = postEmailSent;
362     }
363
364     /**
365      * @return Returns the reminderEmailSent.
366      */

367     public boolean isReminderEmailSent() {
368         return reminderEmailSent;
369     }
370
371     /**
372      * @param reminderEmailSent The reminderEmailSent to set.
373      */

374     public void setReminderEmailSent(boolean reminderEmailSent) {
375         this.reminderEmailSent = reminderEmailSent;
376     }
377
378     /**
379      * @return Returns the billingCountry.
380      */

381     public String JavaDoc getBillingCountry() {
382         return billingCountry;
383     }
384
385     /**
386      * @param billingCountry The billingCountry to set.
387      */

388     public void setBillingCountry(String JavaDoc billingCountry) {
389         this.billingCountry = billingCountry;
390     }
391     
392     
393     
394 }
395
Popular Tags