001 /** 002 * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved. 003 * 004 * The contents of this file are subject to the terms of the Liferay Enterprise 005 * Subscription License ("License"). You may not use this file except in 006 * compliance with the License. You can obtain a copy of the License by 007 * contacting Liferay, Inc. See the License for the specific language governing 008 * permissions and limitations under the License, including but not limited to 009 * distribution rights of the Software. 010 * 011 * 012 * 013 */ 014 015 package com.liferay.portlet.messageboards.model; 016 017 /** 018 * <p> 019 * This class is a wrapper for {@link MBMailingList}. 020 * </p> 021 * 022 * @author Brian Wing Shun Chan 023 * @see MBMailingList 024 * @generated 025 */ 026 public class MBMailingListWrapper implements MBMailingList { 027 public MBMailingListWrapper(MBMailingList mbMailingList) { 028 _mbMailingList = mbMailingList; 029 } 030 031 /** 032 * Gets the primary key of this message boards mailing list. 033 * 034 * @return the primary key of this message boards mailing list 035 */ 036 public long getPrimaryKey() { 037 return _mbMailingList.getPrimaryKey(); 038 } 039 040 /** 041 * Sets the primary key of this message boards mailing list 042 * 043 * @param pk the primary key of this message boards mailing list 044 */ 045 public void setPrimaryKey(long pk) { 046 _mbMailingList.setPrimaryKey(pk); 047 } 048 049 /** 050 * Gets the uuid of this message boards mailing list. 051 * 052 * @return the uuid of this message boards mailing list 053 */ 054 public java.lang.String getUuid() { 055 return _mbMailingList.getUuid(); 056 } 057 058 /** 059 * Sets the uuid of this message boards mailing list. 060 * 061 * @param uuid the uuid of this message boards mailing list 062 */ 063 public void setUuid(java.lang.String uuid) { 064 _mbMailingList.setUuid(uuid); 065 } 066 067 /** 068 * Gets the mailing list id of this message boards mailing list. 069 * 070 * @return the mailing list id of this message boards mailing list 071 */ 072 public long getMailingListId() { 073 return _mbMailingList.getMailingListId(); 074 } 075 076 /** 077 * Sets the mailing list id of this message boards mailing list. 078 * 079 * @param mailingListId the mailing list id of this message boards mailing list 080 */ 081 public void setMailingListId(long mailingListId) { 082 _mbMailingList.setMailingListId(mailingListId); 083 } 084 085 /** 086 * Gets the group id of this message boards mailing list. 087 * 088 * @return the group id of this message boards mailing list 089 */ 090 public long getGroupId() { 091 return _mbMailingList.getGroupId(); 092 } 093 094 /** 095 * Sets the group id of this message boards mailing list. 096 * 097 * @param groupId the group id of this message boards mailing list 098 */ 099 public void setGroupId(long groupId) { 100 _mbMailingList.setGroupId(groupId); 101 } 102 103 /** 104 * Gets the company id of this message boards mailing list. 105 * 106 * @return the company id of this message boards mailing list 107 */ 108 public long getCompanyId() { 109 return _mbMailingList.getCompanyId(); 110 } 111 112 /** 113 * Sets the company id of this message boards mailing list. 114 * 115 * @param companyId the company id of this message boards mailing list 116 */ 117 public void setCompanyId(long companyId) { 118 _mbMailingList.setCompanyId(companyId); 119 } 120 121 /** 122 * Gets the user id of this message boards mailing list. 123 * 124 * @return the user id of this message boards mailing list 125 */ 126 public long getUserId() { 127 return _mbMailingList.getUserId(); 128 } 129 130 /** 131 * Sets the user id of this message boards mailing list. 132 * 133 * @param userId the user id of this message boards mailing list 134 */ 135 public void setUserId(long userId) { 136 _mbMailingList.setUserId(userId); 137 } 138 139 /** 140 * Gets the user uuid of this message boards mailing list. 141 * 142 * @return the user uuid of this message boards mailing list 143 * @throws SystemException if a system exception occurred 144 */ 145 public java.lang.String getUserUuid() 146 throws com.liferay.portal.kernel.exception.SystemException { 147 return _mbMailingList.getUserUuid(); 148 } 149 150 /** 151 * Sets the user uuid of this message boards mailing list. 152 * 153 * @param userUuid the user uuid of this message boards mailing list 154 */ 155 public void setUserUuid(java.lang.String userUuid) { 156 _mbMailingList.setUserUuid(userUuid); 157 } 158 159 /** 160 * Gets the user name of this message boards mailing list. 161 * 162 * @return the user name of this message boards mailing list 163 */ 164 public java.lang.String getUserName() { 165 return _mbMailingList.getUserName(); 166 } 167 168 /** 169 * Sets the user name of this message boards mailing list. 170 * 171 * @param userName the user name of this message boards mailing list 172 */ 173 public void setUserName(java.lang.String userName) { 174 _mbMailingList.setUserName(userName); 175 } 176 177 /** 178 * Gets the create date of this message boards mailing list. 179 * 180 * @return the create date of this message boards mailing list 181 */ 182 public java.util.Date getCreateDate() { 183 return _mbMailingList.getCreateDate(); 184 } 185 186 /** 187 * Sets the create date of this message boards mailing list. 188 * 189 * @param createDate the create date of this message boards mailing list 190 */ 191 public void setCreateDate(java.util.Date createDate) { 192 _mbMailingList.setCreateDate(createDate); 193 } 194 195 /** 196 * Gets the modified date of this message boards mailing list. 197 * 198 * @return the modified date of this message boards mailing list 199 */ 200 public java.util.Date getModifiedDate() { 201 return _mbMailingList.getModifiedDate(); 202 } 203 204 /** 205 * Sets the modified date of this message boards mailing list. 206 * 207 * @param modifiedDate the modified date of this message boards mailing list 208 */ 209 public void setModifiedDate(java.util.Date modifiedDate) { 210 _mbMailingList.setModifiedDate(modifiedDate); 211 } 212 213 /** 214 * Gets the category id of this message boards mailing list. 215 * 216 * @return the category id of this message boards mailing list 217 */ 218 public long getCategoryId() { 219 return _mbMailingList.getCategoryId(); 220 } 221 222 /** 223 * Sets the category id of this message boards mailing list. 224 * 225 * @param categoryId the category id of this message boards mailing list 226 */ 227 public void setCategoryId(long categoryId) { 228 _mbMailingList.setCategoryId(categoryId); 229 } 230 231 /** 232 * Gets the email address of this message boards mailing list. 233 * 234 * @return the email address of this message boards mailing list 235 */ 236 public java.lang.String getEmailAddress() { 237 return _mbMailingList.getEmailAddress(); 238 } 239 240 /** 241 * Sets the email address of this message boards mailing list. 242 * 243 * @param emailAddress the email address of this message boards mailing list 244 */ 245 public void setEmailAddress(java.lang.String emailAddress) { 246 _mbMailingList.setEmailAddress(emailAddress); 247 } 248 249 /** 250 * Gets the in protocol of this message boards mailing list. 251 * 252 * @return the in protocol of this message boards mailing list 253 */ 254 public java.lang.String getInProtocol() { 255 return _mbMailingList.getInProtocol(); 256 } 257 258 /** 259 * Sets the in protocol of this message boards mailing list. 260 * 261 * @param inProtocol the in protocol of this message boards mailing list 262 */ 263 public void setInProtocol(java.lang.String inProtocol) { 264 _mbMailingList.setInProtocol(inProtocol); 265 } 266 267 /** 268 * Gets the in server name of this message boards mailing list. 269 * 270 * @return the in server name of this message boards mailing list 271 */ 272 public java.lang.String getInServerName() { 273 return _mbMailingList.getInServerName(); 274 } 275 276 /** 277 * Sets the in server name of this message boards mailing list. 278 * 279 * @param inServerName the in server name of this message boards mailing list 280 */ 281 public void setInServerName(java.lang.String inServerName) { 282 _mbMailingList.setInServerName(inServerName); 283 } 284 285 /** 286 * Gets the in server port of this message boards mailing list. 287 * 288 * @return the in server port of this message boards mailing list 289 */ 290 public int getInServerPort() { 291 return _mbMailingList.getInServerPort(); 292 } 293 294 /** 295 * Sets the in server port of this message boards mailing list. 296 * 297 * @param inServerPort the in server port of this message boards mailing list 298 */ 299 public void setInServerPort(int inServerPort) { 300 _mbMailingList.setInServerPort(inServerPort); 301 } 302 303 /** 304 * Gets the in use s s l of this message boards mailing list. 305 * 306 * @return the in use s s l of this message boards mailing list 307 */ 308 public boolean getInUseSSL() { 309 return _mbMailingList.getInUseSSL(); 310 } 311 312 /** 313 * Determines whether this message boards mailing list is in use s s l. 314 * 315 * @return whether this message boards mailing list is in use s s l 316 */ 317 public boolean isInUseSSL() { 318 return _mbMailingList.isInUseSSL(); 319 } 320 321 /** 322 * Sets whether this {$entity.humanName} is in use s s l. 323 * 324 * @param inUseSSL the in use s s l of this message boards mailing list 325 */ 326 public void setInUseSSL(boolean inUseSSL) { 327 _mbMailingList.setInUseSSL(inUseSSL); 328 } 329 330 /** 331 * Gets the in user name of this message boards mailing list. 332 * 333 * @return the in user name of this message boards mailing list 334 */ 335 public java.lang.String getInUserName() { 336 return _mbMailingList.getInUserName(); 337 } 338 339 /** 340 * Sets the in user name of this message boards mailing list. 341 * 342 * @param inUserName the in user name of this message boards mailing list 343 */ 344 public void setInUserName(java.lang.String inUserName) { 345 _mbMailingList.setInUserName(inUserName); 346 } 347 348 /** 349 * Gets the in password of this message boards mailing list. 350 * 351 * @return the in password of this message boards mailing list 352 */ 353 public java.lang.String getInPassword() { 354 return _mbMailingList.getInPassword(); 355 } 356 357 /** 358 * Sets the in password of this message boards mailing list. 359 * 360 * @param inPassword the in password of this message boards mailing list 361 */ 362 public void setInPassword(java.lang.String inPassword) { 363 _mbMailingList.setInPassword(inPassword); 364 } 365 366 /** 367 * Gets the in read interval of this message boards mailing list. 368 * 369 * @return the in read interval of this message boards mailing list 370 */ 371 public int getInReadInterval() { 372 return _mbMailingList.getInReadInterval(); 373 } 374 375 /** 376 * Sets the in read interval of this message boards mailing list. 377 * 378 * @param inReadInterval the in read interval of this message boards mailing list 379 */ 380 public void setInReadInterval(int inReadInterval) { 381 _mbMailingList.setInReadInterval(inReadInterval); 382 } 383 384 /** 385 * Gets the out email address of this message boards mailing list. 386 * 387 * @return the out email address of this message boards mailing list 388 */ 389 public java.lang.String getOutEmailAddress() { 390 return _mbMailingList.getOutEmailAddress(); 391 } 392 393 /** 394 * Sets the out email address of this message boards mailing list. 395 * 396 * @param outEmailAddress the out email address of this message boards mailing list 397 */ 398 public void setOutEmailAddress(java.lang.String outEmailAddress) { 399 _mbMailingList.setOutEmailAddress(outEmailAddress); 400 } 401 402 /** 403 * Gets the out custom of this message boards mailing list. 404 * 405 * @return the out custom of this message boards mailing list 406 */ 407 public boolean getOutCustom() { 408 return _mbMailingList.getOutCustom(); 409 } 410 411 /** 412 * Determines whether this message boards mailing list is out custom. 413 * 414 * @return whether this message boards mailing list is out custom 415 */ 416 public boolean isOutCustom() { 417 return _mbMailingList.isOutCustom(); 418 } 419 420 /** 421 * Sets whether this {$entity.humanName} is out custom. 422 * 423 * @param outCustom the out custom of this message boards mailing list 424 */ 425 public void setOutCustom(boolean outCustom) { 426 _mbMailingList.setOutCustom(outCustom); 427 } 428 429 /** 430 * Gets the out server name of this message boards mailing list. 431 * 432 * @return the out server name of this message boards mailing list 433 */ 434 public java.lang.String getOutServerName() { 435 return _mbMailingList.getOutServerName(); 436 } 437 438 /** 439 * Sets the out server name of this message boards mailing list. 440 * 441 * @param outServerName the out server name of this message boards mailing list 442 */ 443 public void setOutServerName(java.lang.String outServerName) { 444 _mbMailingList.setOutServerName(outServerName); 445 } 446 447 /** 448 * Gets the out server port of this message boards mailing list. 449 * 450 * @return the out server port of this message boards mailing list 451 */ 452 public int getOutServerPort() { 453 return _mbMailingList.getOutServerPort(); 454 } 455 456 /** 457 * Sets the out server port of this message boards mailing list. 458 * 459 * @param outServerPort the out server port of this message boards mailing list 460 */ 461 public void setOutServerPort(int outServerPort) { 462 _mbMailingList.setOutServerPort(outServerPort); 463 } 464 465 /** 466 * Gets the out use s s l of this message boards mailing list. 467 * 468 * @return the out use s s l of this message boards mailing list 469 */ 470 public boolean getOutUseSSL() { 471 return _mbMailingList.getOutUseSSL(); 472 } 473 474 /** 475 * Determines whether this message boards mailing list is out use s s l. 476 * 477 * @return whether this message boards mailing list is out use s s l 478 */ 479 public boolean isOutUseSSL() { 480 return _mbMailingList.isOutUseSSL(); 481 } 482 483 /** 484 * Sets whether this {$entity.humanName} is out use s s l. 485 * 486 * @param outUseSSL the out use s s l of this message boards mailing list 487 */ 488 public void setOutUseSSL(boolean outUseSSL) { 489 _mbMailingList.setOutUseSSL(outUseSSL); 490 } 491 492 /** 493 * Gets the out user name of this message boards mailing list. 494 * 495 * @return the out user name of this message boards mailing list 496 */ 497 public java.lang.String getOutUserName() { 498 return _mbMailingList.getOutUserName(); 499 } 500 501 /** 502 * Sets the out user name of this message boards mailing list. 503 * 504 * @param outUserName the out user name of this message boards mailing list 505 */ 506 public void setOutUserName(java.lang.String outUserName) { 507 _mbMailingList.setOutUserName(outUserName); 508 } 509 510 /** 511 * Gets the out password of this message boards mailing list. 512 * 513 * @return the out password of this message boards mailing list 514 */ 515 public java.lang.String getOutPassword() { 516 return _mbMailingList.getOutPassword(); 517 } 518 519 /** 520 * Sets the out password of this message boards mailing list. 521 * 522 * @param outPassword the out password of this message boards mailing list 523 */ 524 public void setOutPassword(java.lang.String outPassword) { 525 _mbMailingList.setOutPassword(outPassword); 526 } 527 528 /** 529 * Gets the active of this message boards mailing list. 530 * 531 * @return the active of this message boards mailing list 532 */ 533 public boolean getActive() { 534 return _mbMailingList.getActive(); 535 } 536 537 /** 538 * Determines whether this message boards mailing list is active. 539 * 540 * @return whether this message boards mailing list is active 541 */ 542 public boolean isActive() { 543 return _mbMailingList.isActive(); 544 } 545 546 /** 547 * Sets whether this {$entity.humanName} is active. 548 * 549 * @param active the active of this message boards mailing list 550 */ 551 public void setActive(boolean active) { 552 _mbMailingList.setActive(active); 553 } 554 555 public boolean isNew() { 556 return _mbMailingList.isNew(); 557 } 558 559 public void setNew(boolean n) { 560 _mbMailingList.setNew(n); 561 } 562 563 public boolean isCachedModel() { 564 return _mbMailingList.isCachedModel(); 565 } 566 567 public void setCachedModel(boolean cachedModel) { 568 _mbMailingList.setCachedModel(cachedModel); 569 } 570 571 public boolean isEscapedModel() { 572 return _mbMailingList.isEscapedModel(); 573 } 574 575 public void setEscapedModel(boolean escapedModel) { 576 _mbMailingList.setEscapedModel(escapedModel); 577 } 578 579 public java.io.Serializable getPrimaryKeyObj() { 580 return _mbMailingList.getPrimaryKeyObj(); 581 } 582 583 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() { 584 return _mbMailingList.getExpandoBridge(); 585 } 586 587 public void setExpandoBridgeAttributes( 588 com.liferay.portal.service.ServiceContext serviceContext) { 589 _mbMailingList.setExpandoBridgeAttributes(serviceContext); 590 } 591 592 public java.lang.Object clone() { 593 return _mbMailingList.clone(); 594 } 595 596 public int compareTo( 597 com.liferay.portlet.messageboards.model.MBMailingList mbMailingList) { 598 return _mbMailingList.compareTo(mbMailingList); 599 } 600 601 public int hashCode() { 602 return _mbMailingList.hashCode(); 603 } 604 605 public com.liferay.portlet.messageboards.model.MBMailingList toEscapedModel() { 606 return _mbMailingList.toEscapedModel(); 607 } 608 609 public java.lang.String toString() { 610 return _mbMailingList.toString(); 611 } 612 613 public java.lang.String toXmlString() { 614 return _mbMailingList.toXmlString(); 615 } 616 617 public MBMailingList getWrappedMBMailingList() { 618 return _mbMailingList; 619 } 620 621 private MBMailingList _mbMailingList; 622 }