| 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; private long eventLocationInode; private long userInode; private int registrationStatus; private java.util.Date datePosted; private java.util.Date lastModDate; private float totalPaid; private float totalDue; private float totalRegistration; 18 private int paymentType; private String billingAddress1; private String billingAddress2; private String billingCity; private String billingState; private String billingZip; private String billingCountry; private String billingContactName; private String billingContactPhone; private String billingContactEmail; private String cardName; private String cardType; private String cardNumber; private String cardExpMonth; 32 private String cardExpYear; 33 private String cardVerificationValue; private String checkNumber; private String checkBankName; private String poNumber; private String invoiceNumber; private boolean badgePrinted; private String howDidYouHear; private String ceoName; private boolean modified_QB; private boolean reminderEmailSent; 43 private boolean postEmailSent; 44 45 public WebEventRegistration(long eventInode, long eventLocationInode, long userInode, int registrationStatus, java.util.Date datePosted, java.util.Date lastModDate, int totalPaid, int totalDue, int paymentType, String billingAddress1, String billingAddress2, String billingCity, String billingState, String billingZip, String billingContactName, String billingContactPhone, String billingContactEmail, String cardName, String cardType, String cardNumber, String cardVerificationValue, String checkNumber, String checkBankName, String poNumber, String invoiceNumber, boolean badgePrinted, String howDidYouHear, String 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 getDatePosted() { 117 return this.datePosted; 118 } 119 120 public void setDatePosted(java.util.Date datePosted) { 121 this.datePosted = datePosted; 122 } 123 public java.util.Date getLastModDate() { 124 return this.lastModDate; 125 } 126 127 public void setLastModDate(java.util.Date 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 getBillingAddress1() { 152 return this.billingAddress1; 153 } 154 155 public void setBillingAddress1(String billingAddress1) { 156 this.billingAddress1 = billingAddress1; 157 } 158 public String getBillingAddress2() { 159 return this.billingAddress2; 160 } 161 162 public void setBillingAddress2(String billingAddress2) { 163 this.billingAddress2 = billingAddress2; 164 } 165 public String getBillingCity() { 166 return this.billingCity; 167 } 168 169 public void setBillingCity(String billingCity) { 170 this.billingCity = billingCity; 171 } 172 public String getBillingState() { 173 return this.billingState; 174 } 175 176 public void setBillingState(String billingState) { 177 this.billingState = billingState; 178 } 179 public String getBillingZip() { 180 return this.billingZip; 181 } 182 183 public void setBillingZip(String billingZip) { 184 this.billingZip = billingZip; 185 } 186 public String getBillingContactName() { 187 return this.billingContactName; 188 } 189 190 public void setBillingContactName(String billingContactName) { 191 this.billingContactName = billingContactName; 192 } 193 public String getBillingContactPhone() { 194 return this.billingContactPhone; 195 } 196 197 public void setBillingContactPhone(String billingContactPhone) { 198 this.billingContactPhone = billingContactPhone; 199 } 200 public String getBillingContactEmail() { 201 return this.billingContactEmail; 202 } 203 204 public void setBillingContactEmail(String billingContactEmail) { 205 this.billingContactEmail = billingContactEmail; 206 } 207 public String getCardName() { 208 return this.cardName; 209 } 210 211 public void setCardName(String cardName) { 212 this.cardName = cardName; 213 } 214 public String getCardType() { 215 return this.cardType; 216 } 217 218 public void setCardType(String cardType) { 219 this.cardType = cardType; 220 } 221 public String getCardNumber() { 222 return this.cardNumber; 223 } 224 225 public void setCardNumber(String cardNumber) { 226 this.cardNumber = cardNumber; 227 } 228 229 232 public String getCardExpMonth() { 233 return cardExpMonth; 234 } 235 236 239 public void setCardExpMonth(String cardExpMonth) { 240 this.cardExpMonth = cardExpMonth; 241 } 242 243 246 public String getCardExpYear() { 247 return cardExpYear; 248 } 249 250 253 public void setCardExpYear(String cardExpYear) { 254 this.cardExpYear = cardExpYear; 255 } 256 257 public String getCardVerificationValue() { 258 return this.cardVerificationValue; 259 } 260 261 public void setCardVerificationValue(String cardVerificationValue) { 262 this.cardVerificationValue = cardVerificationValue; 263 } 264 public String getCheckNumber() { 265 return this.checkNumber; 266 } 267 268 public void setCheckNumber(String checkNumber) { 269 this.checkNumber = checkNumber; 270 } 271 public String getCheckBankName() { 272 return this.checkBankName; 273 } 274 275 public void setCheckBankName(String checkBankName) { 276 this.checkBankName = checkBankName; 277 } 278 public String getPoNumber() { 279 return this.poNumber; 280 } 281 282 public void setPoNumber(String poNumber) { 283 this.poNumber = poNumber; 284 } 285 public String getInvoiceNumber() { 286 return this.invoiceNumber; 287 } 288 289 public void setInvoiceNumber(String invoiceNumber) { 290 this.invoiceNumber = invoiceNumber; 291 } 292 public String getHowDidYouHear() { 293 return this.howDidYouHear; 294 } 295 296 public void setHowDidYouHear(String howDidYouHear) { 297 this.howDidYouHear = howDidYouHear; 298 } 299 public String getCeoName() { 300 return this.ceoName; 301 } 302 303 public void setCeoName(String ceoName) { 304 this.ceoName = ceoName; 305 } 306 307 310 public boolean isBadgePrinted() { 311 return badgePrinted; 312 } 313 314 317 public void setBadgePrinted(boolean badgePrinted) { 318 this.badgePrinted = badgePrinted; 319 } 320 321 324 public float getTotalRegistration() { 325 return totalRegistration; 326 } 327 328 331 public void setTotalRegistration(float totalRegistration) { 332 this.totalRegistration = totalRegistration; 333 } 334 335 338 public boolean isModified_QB() { 339 return modified_QB; 340 } 341 342 346 public void setModified_QB(boolean modified_QB) { 347 this.modified_QB = modified_QB; 348 } 349 350 353 public boolean isPostEmailSent() { 354 return postEmailSent; 355 } 356 357 360 public void setPostEmailSent(boolean postEmailSent) { 361 this.postEmailSent = postEmailSent; 362 } 363 364 367 public boolean isReminderEmailSent() { 368 return reminderEmailSent; 369 } 370 371 374 public void setReminderEmailSent(boolean reminderEmailSent) { 375 this.reminderEmailSent = reminderEmailSent; 376 } 377 378 381 public String getBillingCountry() { 382 return billingCountry; 383 } 384 385 388 public void setBillingCountry(String billingCountry) { 389 this.billingCountry = billingCountry; 390 } 391 392 393 394 } 395 | Popular Tags |