/portal-service/src/com/liferay/portal/model/UserWrapper.java

https://github.com/spreddy/liferay-portal · Java · 1222 lines · 588 code · 171 blank · 463 comment · 0 complexity · b0781b9b5de8a451c69cd8014be6994a MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.portal.model;
  15. /**
  16. * <p>
  17. * This class is a wrapper for {@link User}.
  18. * </p>
  19. *
  20. * @author Brian Wing Shun Chan
  21. * @see User
  22. * @generated
  23. */
  24. public class UserWrapper implements User {
  25. public UserWrapper(User user) {
  26. _user = user;
  27. }
  28. public Class<?> getModelClass() {
  29. return User.class;
  30. }
  31. public String getModelClassName() {
  32. return User.class.getName();
  33. }
  34. /**
  35. * Returns the primary key of this user.
  36. *
  37. * @return the primary key of this user
  38. */
  39. public long getPrimaryKey() {
  40. return _user.getPrimaryKey();
  41. }
  42. /**
  43. * Sets the primary key of this user.
  44. *
  45. * @param primaryKey the primary key of this user
  46. */
  47. public void setPrimaryKey(long primaryKey) {
  48. _user.setPrimaryKey(primaryKey);
  49. }
  50. /**
  51. * Returns the uuid of this user.
  52. *
  53. * @return the uuid of this user
  54. */
  55. public java.lang.String getUuid() {
  56. return _user.getUuid();
  57. }
  58. /**
  59. * Sets the uuid of this user.
  60. *
  61. * @param uuid the uuid of this user
  62. */
  63. public void setUuid(java.lang.String uuid) {
  64. _user.setUuid(uuid);
  65. }
  66. /**
  67. * Returns the user ID of this user.
  68. *
  69. * @return the user ID of this user
  70. */
  71. public long getUserId() {
  72. return _user.getUserId();
  73. }
  74. /**
  75. * Sets the user ID of this user.
  76. *
  77. * @param userId the user ID of this user
  78. */
  79. public void setUserId(long userId) {
  80. _user.setUserId(userId);
  81. }
  82. /**
  83. * Returns the user uuid of this user.
  84. *
  85. * @return the user uuid of this user
  86. * @throws SystemException if a system exception occurred
  87. */
  88. public java.lang.String getUserUuid()
  89. throws com.liferay.portal.kernel.exception.SystemException {
  90. return _user.getUserUuid();
  91. }
  92. /**
  93. * Sets the user uuid of this user.
  94. *
  95. * @param userUuid the user uuid of this user
  96. */
  97. public void setUserUuid(java.lang.String userUuid) {
  98. _user.setUserUuid(userUuid);
  99. }
  100. /**
  101. * Returns the company ID of this user.
  102. *
  103. * @return the company ID of this user
  104. */
  105. public long getCompanyId() {
  106. return _user.getCompanyId();
  107. }
  108. /**
  109. * Sets the company ID of this user.
  110. *
  111. * @param companyId the company ID of this user
  112. */
  113. public void setCompanyId(long companyId) {
  114. _user.setCompanyId(companyId);
  115. }
  116. /**
  117. * Returns the create date of this user.
  118. *
  119. * @return the create date of this user
  120. */
  121. public java.util.Date getCreateDate() {
  122. return _user.getCreateDate();
  123. }
  124. /**
  125. * Sets the create date of this user.
  126. *
  127. * @param createDate the create date of this user
  128. */
  129. public void setCreateDate(java.util.Date createDate) {
  130. _user.setCreateDate(createDate);
  131. }
  132. /**
  133. * Returns the modified date of this user.
  134. *
  135. * @return the modified date of this user
  136. */
  137. public java.util.Date getModifiedDate() {
  138. return _user.getModifiedDate();
  139. }
  140. /**
  141. * Sets the modified date of this user.
  142. *
  143. * @param modifiedDate the modified date of this user
  144. */
  145. public void setModifiedDate(java.util.Date modifiedDate) {
  146. _user.setModifiedDate(modifiedDate);
  147. }
  148. /**
  149. * Returns the default user of this user.
  150. *
  151. * @return the default user of this user
  152. */
  153. public boolean getDefaultUser() {
  154. return _user.getDefaultUser();
  155. }
  156. /**
  157. * Returns <code>true</code> if this user is default user.
  158. *
  159. * @return <code>true</code> if this user is default user; <code>false</code> otherwise
  160. */
  161. public boolean isDefaultUser() {
  162. return _user.isDefaultUser();
  163. }
  164. /**
  165. * Sets whether this user is default user.
  166. *
  167. * @param defaultUser the default user of this user
  168. */
  169. public void setDefaultUser(boolean defaultUser) {
  170. _user.setDefaultUser(defaultUser);
  171. }
  172. /**
  173. * Returns the contact ID of this user.
  174. *
  175. * @return the contact ID of this user
  176. */
  177. public long getContactId() {
  178. return _user.getContactId();
  179. }
  180. /**
  181. * Sets the contact ID of this user.
  182. *
  183. * @param contactId the contact ID of this user
  184. */
  185. public void setContactId(long contactId) {
  186. _user.setContactId(contactId);
  187. }
  188. /**
  189. * Returns the password of this user.
  190. *
  191. * @return the password of this user
  192. */
  193. public java.lang.String getPassword() {
  194. return _user.getPassword();
  195. }
  196. /**
  197. * Sets the password of this user.
  198. *
  199. * @param password the password of this user
  200. */
  201. public void setPassword(java.lang.String password) {
  202. _user.setPassword(password);
  203. }
  204. /**
  205. * Returns the password encrypted of this user.
  206. *
  207. * @return the password encrypted of this user
  208. */
  209. public boolean getPasswordEncrypted() {
  210. return _user.getPasswordEncrypted();
  211. }
  212. /**
  213. * Returns <code>true</code> if this user is password encrypted.
  214. *
  215. * @return <code>true</code> if this user is password encrypted; <code>false</code> otherwise
  216. */
  217. public boolean isPasswordEncrypted() {
  218. return _user.isPasswordEncrypted();
  219. }
  220. /**
  221. * Sets whether this user is password encrypted.
  222. *
  223. * @param passwordEncrypted the password encrypted of this user
  224. */
  225. public void setPasswordEncrypted(boolean passwordEncrypted) {
  226. _user.setPasswordEncrypted(passwordEncrypted);
  227. }
  228. /**
  229. * Returns the password reset of this user.
  230. *
  231. * @return the password reset of this user
  232. */
  233. public boolean getPasswordReset() {
  234. return _user.getPasswordReset();
  235. }
  236. /**
  237. * Returns <code>true</code> if this user is password reset.
  238. *
  239. * @return <code>true</code> if this user is password reset; <code>false</code> otherwise
  240. */
  241. public boolean isPasswordReset() {
  242. return _user.isPasswordReset();
  243. }
  244. /**
  245. * Sets whether this user is password reset.
  246. *
  247. * @param passwordReset the password reset of this user
  248. */
  249. public void setPasswordReset(boolean passwordReset) {
  250. _user.setPasswordReset(passwordReset);
  251. }
  252. /**
  253. * Returns the password modified date of this user.
  254. *
  255. * @return the password modified date of this user
  256. */
  257. public java.util.Date getPasswordModifiedDate() {
  258. return _user.getPasswordModifiedDate();
  259. }
  260. /**
  261. * Sets the password modified date of this user.
  262. *
  263. * @param passwordModifiedDate the password modified date of this user
  264. */
  265. public void setPasswordModifiedDate(java.util.Date passwordModifiedDate) {
  266. _user.setPasswordModifiedDate(passwordModifiedDate);
  267. }
  268. /**
  269. * Returns the digest of this user.
  270. *
  271. * @return the digest of this user
  272. */
  273. public java.lang.String getDigest() {
  274. return _user.getDigest();
  275. }
  276. /**
  277. * Sets the digest of this user.
  278. *
  279. * @param digest the digest of this user
  280. */
  281. public void setDigest(java.lang.String digest) {
  282. _user.setDigest(digest);
  283. }
  284. /**
  285. * Returns the reminder query question of this user.
  286. *
  287. * @return the reminder query question of this user
  288. */
  289. public java.lang.String getReminderQueryQuestion() {
  290. return _user.getReminderQueryQuestion();
  291. }
  292. /**
  293. * Sets the reminder query question of this user.
  294. *
  295. * @param reminderQueryQuestion the reminder query question of this user
  296. */
  297. public void setReminderQueryQuestion(java.lang.String reminderQueryQuestion) {
  298. _user.setReminderQueryQuestion(reminderQueryQuestion);
  299. }
  300. /**
  301. * Returns the reminder query answer of this user.
  302. *
  303. * @return the reminder query answer of this user
  304. */
  305. public java.lang.String getReminderQueryAnswer() {
  306. return _user.getReminderQueryAnswer();
  307. }
  308. /**
  309. * Sets the reminder query answer of this user.
  310. *
  311. * @param reminderQueryAnswer the reminder query answer of this user
  312. */
  313. public void setReminderQueryAnswer(java.lang.String reminderQueryAnswer) {
  314. _user.setReminderQueryAnswer(reminderQueryAnswer);
  315. }
  316. /**
  317. * Returns the grace login count of this user.
  318. *
  319. * @return the grace login count of this user
  320. */
  321. public int getGraceLoginCount() {
  322. return _user.getGraceLoginCount();
  323. }
  324. /**
  325. * Sets the grace login count of this user.
  326. *
  327. * @param graceLoginCount the grace login count of this user
  328. */
  329. public void setGraceLoginCount(int graceLoginCount) {
  330. _user.setGraceLoginCount(graceLoginCount);
  331. }
  332. /**
  333. * Returns the screen name of this user.
  334. *
  335. * @return the screen name of this user
  336. */
  337. public java.lang.String getScreenName() {
  338. return _user.getScreenName();
  339. }
  340. /**
  341. * Sets the screen name of this user.
  342. *
  343. * @param screenName the screen name of this user
  344. */
  345. public void setScreenName(java.lang.String screenName) {
  346. _user.setScreenName(screenName);
  347. }
  348. /**
  349. * Returns the email address of this user.
  350. *
  351. * @return the email address of this user
  352. */
  353. public java.lang.String getEmailAddress() {
  354. return _user.getEmailAddress();
  355. }
  356. /**
  357. * Sets the email address of this user.
  358. *
  359. * @param emailAddress the email address of this user
  360. */
  361. public void setEmailAddress(java.lang.String emailAddress) {
  362. _user.setEmailAddress(emailAddress);
  363. }
  364. /**
  365. * Returns the facebook ID of this user.
  366. *
  367. * @return the facebook ID of this user
  368. */
  369. public long getFacebookId() {
  370. return _user.getFacebookId();
  371. }
  372. /**
  373. * Sets the facebook ID of this user.
  374. *
  375. * @param facebookId the facebook ID of this user
  376. */
  377. public void setFacebookId(long facebookId) {
  378. _user.setFacebookId(facebookId);
  379. }
  380. /**
  381. * Returns the open ID of this user.
  382. *
  383. * @return the open ID of this user
  384. */
  385. public java.lang.String getOpenId() {
  386. return _user.getOpenId();
  387. }
  388. /**
  389. * Sets the open ID of this user.
  390. *
  391. * @param openId the open ID of this user
  392. */
  393. public void setOpenId(java.lang.String openId) {
  394. _user.setOpenId(openId);
  395. }
  396. /**
  397. * Returns the portrait ID of this user.
  398. *
  399. * @return the portrait ID of this user
  400. */
  401. public long getPortraitId() {
  402. return _user.getPortraitId();
  403. }
  404. /**
  405. * Sets the portrait ID of this user.
  406. *
  407. * @param portraitId the portrait ID of this user
  408. */
  409. public void setPortraitId(long portraitId) {
  410. _user.setPortraitId(portraitId);
  411. }
  412. /**
  413. * Returns the language ID of this user.
  414. *
  415. * @return the language ID of this user
  416. */
  417. public java.lang.String getLanguageId() {
  418. return _user.getLanguageId();
  419. }
  420. /**
  421. * Sets the language ID of this user.
  422. *
  423. * @param languageId the language ID of this user
  424. */
  425. public void setLanguageId(java.lang.String languageId) {
  426. _user.setLanguageId(languageId);
  427. }
  428. /**
  429. * Returns the time zone ID of this user.
  430. *
  431. * @return the time zone ID of this user
  432. */
  433. public java.lang.String getTimeZoneId() {
  434. return _user.getTimeZoneId();
  435. }
  436. /**
  437. * Sets the time zone ID of this user.
  438. *
  439. * @param timeZoneId the time zone ID of this user
  440. */
  441. public void setTimeZoneId(java.lang.String timeZoneId) {
  442. _user.setTimeZoneId(timeZoneId);
  443. }
  444. /**
  445. * Returns the greeting of this user.
  446. *
  447. * @return the greeting of this user
  448. */
  449. public java.lang.String getGreeting() {
  450. return _user.getGreeting();
  451. }
  452. /**
  453. * Sets the greeting of this user.
  454. *
  455. * @param greeting the greeting of this user
  456. */
  457. public void setGreeting(java.lang.String greeting) {
  458. _user.setGreeting(greeting);
  459. }
  460. /**
  461. * Returns the comments of this user.
  462. *
  463. * @return the comments of this user
  464. */
  465. public java.lang.String getComments() {
  466. return _user.getComments();
  467. }
  468. /**
  469. * Sets the comments of this user.
  470. *
  471. * @param comments the comments of this user
  472. */
  473. public void setComments(java.lang.String comments) {
  474. _user.setComments(comments);
  475. }
  476. /**
  477. * Returns the first name of this user.
  478. *
  479. * @return the first name of this user
  480. */
  481. public java.lang.String getFirstName() {
  482. return _user.getFirstName();
  483. }
  484. /**
  485. * Sets the first name of this user.
  486. *
  487. * @param firstName the first name of this user
  488. */
  489. public void setFirstName(java.lang.String firstName) {
  490. _user.setFirstName(firstName);
  491. }
  492. /**
  493. * Returns the middle name of this user.
  494. *
  495. * @return the middle name of this user
  496. */
  497. public java.lang.String getMiddleName() {
  498. return _user.getMiddleName();
  499. }
  500. /**
  501. * Sets the middle name of this user.
  502. *
  503. * @param middleName the middle name of this user
  504. */
  505. public void setMiddleName(java.lang.String middleName) {
  506. _user.setMiddleName(middleName);
  507. }
  508. /**
  509. * Returns the last name of this user.
  510. *
  511. * @return the last name of this user
  512. */
  513. public java.lang.String getLastName() {
  514. return _user.getLastName();
  515. }
  516. /**
  517. * Sets the last name of this user.
  518. *
  519. * @param lastName the last name of this user
  520. */
  521. public void setLastName(java.lang.String lastName) {
  522. _user.setLastName(lastName);
  523. }
  524. /**
  525. * Returns the job title of this user.
  526. *
  527. * @return the job title of this user
  528. */
  529. public java.lang.String getJobTitle() {
  530. return _user.getJobTitle();
  531. }
  532. /**
  533. * Sets the job title of this user.
  534. *
  535. * @param jobTitle the job title of this user
  536. */
  537. public void setJobTitle(java.lang.String jobTitle) {
  538. _user.setJobTitle(jobTitle);
  539. }
  540. /**
  541. * Returns the login date of this user.
  542. *
  543. * @return the login date of this user
  544. */
  545. public java.util.Date getLoginDate() {
  546. return _user.getLoginDate();
  547. }
  548. /**
  549. * Sets the login date of this user.
  550. *
  551. * @param loginDate the login date of this user
  552. */
  553. public void setLoginDate(java.util.Date loginDate) {
  554. _user.setLoginDate(loginDate);
  555. }
  556. /**
  557. * Returns the login i p of this user.
  558. *
  559. * @return the login i p of this user
  560. */
  561. public java.lang.String getLoginIP() {
  562. return _user.getLoginIP();
  563. }
  564. /**
  565. * Sets the login i p of this user.
  566. *
  567. * @param loginIP the login i p of this user
  568. */
  569. public void setLoginIP(java.lang.String loginIP) {
  570. _user.setLoginIP(loginIP);
  571. }
  572. /**
  573. * Returns the last login date of this user.
  574. *
  575. * @return the last login date of this user
  576. */
  577. public java.util.Date getLastLoginDate() {
  578. return _user.getLastLoginDate();
  579. }
  580. /**
  581. * Sets the last login date of this user.
  582. *
  583. * @param lastLoginDate the last login date of this user
  584. */
  585. public void setLastLoginDate(java.util.Date lastLoginDate) {
  586. _user.setLastLoginDate(lastLoginDate);
  587. }
  588. /**
  589. * Returns the last login i p of this user.
  590. *
  591. * @return the last login i p of this user
  592. */
  593. public java.lang.String getLastLoginIP() {
  594. return _user.getLastLoginIP();
  595. }
  596. /**
  597. * Sets the last login i p of this user.
  598. *
  599. * @param lastLoginIP the last login i p of this user
  600. */
  601. public void setLastLoginIP(java.lang.String lastLoginIP) {
  602. _user.setLastLoginIP(lastLoginIP);
  603. }
  604. /**
  605. * Returns the last failed login date of this user.
  606. *
  607. * @return the last failed login date of this user
  608. */
  609. public java.util.Date getLastFailedLoginDate() {
  610. return _user.getLastFailedLoginDate();
  611. }
  612. /**
  613. * Sets the last failed login date of this user.
  614. *
  615. * @param lastFailedLoginDate the last failed login date of this user
  616. */
  617. public void setLastFailedLoginDate(java.util.Date lastFailedLoginDate) {
  618. _user.setLastFailedLoginDate(lastFailedLoginDate);
  619. }
  620. /**
  621. * Returns the failed login attempts of this user.
  622. *
  623. * @return the failed login attempts of this user
  624. */
  625. public int getFailedLoginAttempts() {
  626. return _user.getFailedLoginAttempts();
  627. }
  628. /**
  629. * Sets the failed login attempts of this user.
  630. *
  631. * @param failedLoginAttempts the failed login attempts of this user
  632. */
  633. public void setFailedLoginAttempts(int failedLoginAttempts) {
  634. _user.setFailedLoginAttempts(failedLoginAttempts);
  635. }
  636. /**
  637. * Returns the lockout of this user.
  638. *
  639. * @return the lockout of this user
  640. */
  641. public boolean getLockout() {
  642. return _user.getLockout();
  643. }
  644. /**
  645. * Returns <code>true</code> if this user is lockout.
  646. *
  647. * @return <code>true</code> if this user is lockout; <code>false</code> otherwise
  648. */
  649. public boolean isLockout() {
  650. return _user.isLockout();
  651. }
  652. /**
  653. * Sets whether this user is lockout.
  654. *
  655. * @param lockout the lockout of this user
  656. */
  657. public void setLockout(boolean lockout) {
  658. _user.setLockout(lockout);
  659. }
  660. /**
  661. * Returns the lockout date of this user.
  662. *
  663. * @return the lockout date of this user
  664. */
  665. public java.util.Date getLockoutDate() {
  666. return _user.getLockoutDate();
  667. }
  668. /**
  669. * Sets the lockout date of this user.
  670. *
  671. * @param lockoutDate the lockout date of this user
  672. */
  673. public void setLockoutDate(java.util.Date lockoutDate) {
  674. _user.setLockoutDate(lockoutDate);
  675. }
  676. /**
  677. * Returns the agreed to terms of use of this user.
  678. *
  679. * @return the agreed to terms of use of this user
  680. */
  681. public boolean getAgreedToTermsOfUse() {
  682. return _user.getAgreedToTermsOfUse();
  683. }
  684. /**
  685. * Returns <code>true</code> if this user is agreed to terms of use.
  686. *
  687. * @return <code>true</code> if this user is agreed to terms of use; <code>false</code> otherwise
  688. */
  689. public boolean isAgreedToTermsOfUse() {
  690. return _user.isAgreedToTermsOfUse();
  691. }
  692. /**
  693. * Sets whether this user is agreed to terms of use.
  694. *
  695. * @param agreedToTermsOfUse the agreed to terms of use of this user
  696. */
  697. public void setAgreedToTermsOfUse(boolean agreedToTermsOfUse) {
  698. _user.setAgreedToTermsOfUse(agreedToTermsOfUse);
  699. }
  700. /**
  701. * Returns the email address verified of this user.
  702. *
  703. * @return the email address verified of this user
  704. */
  705. public boolean getEmailAddressVerified() {
  706. return _user.getEmailAddressVerified();
  707. }
  708. /**
  709. * Returns <code>true</code> if this user is email address verified.
  710. *
  711. * @return <code>true</code> if this user is email address verified; <code>false</code> otherwise
  712. */
  713. public boolean isEmailAddressVerified() {
  714. return _user.isEmailAddressVerified();
  715. }
  716. /**
  717. * Sets whether this user is email address verified.
  718. *
  719. * @param emailAddressVerified the email address verified of this user
  720. */
  721. public void setEmailAddressVerified(boolean emailAddressVerified) {
  722. _user.setEmailAddressVerified(emailAddressVerified);
  723. }
  724. /**
  725. * Returns the status of this user.
  726. *
  727. * @return the status of this user
  728. */
  729. public int getStatus() {
  730. return _user.getStatus();
  731. }
  732. /**
  733. * Sets the status of this user.
  734. *
  735. * @param status the status of this user
  736. */
  737. public void setStatus(int status) {
  738. _user.setStatus(status);
  739. }
  740. public boolean isNew() {
  741. return _user.isNew();
  742. }
  743. public void setNew(boolean n) {
  744. _user.setNew(n);
  745. }
  746. public boolean isCachedModel() {
  747. return _user.isCachedModel();
  748. }
  749. public void setCachedModel(boolean cachedModel) {
  750. _user.setCachedModel(cachedModel);
  751. }
  752. public boolean isEscapedModel() {
  753. return _user.isEscapedModel();
  754. }
  755. public void setEscapedModel(boolean escapedModel) {
  756. _user.setEscapedModel(escapedModel);
  757. }
  758. public java.io.Serializable getPrimaryKeyObj() {
  759. return _user.getPrimaryKeyObj();
  760. }
  761. public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
  762. _user.setPrimaryKeyObj(primaryKeyObj);
  763. }
  764. public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
  765. return _user.getExpandoBridge();
  766. }
  767. public void setExpandoBridgeAttributes(
  768. com.liferay.portal.service.ServiceContext serviceContext) {
  769. _user.setExpandoBridgeAttributes(serviceContext);
  770. }
  771. @Override
  772. public java.lang.Object clone() {
  773. return new UserWrapper((User)_user.clone());
  774. }
  775. public int compareTo(com.liferay.portal.model.User user) {
  776. return _user.compareTo(user);
  777. }
  778. @Override
  779. public int hashCode() {
  780. return _user.hashCode();
  781. }
  782. public com.liferay.portal.model.CacheModel<com.liferay.portal.model.User> toCacheModel() {
  783. return _user.toCacheModel();
  784. }
  785. public com.liferay.portal.model.User toEscapedModel() {
  786. return new UserWrapper(_user.toEscapedModel());
  787. }
  788. @Override
  789. public java.lang.String toString() {
  790. return _user.toString();
  791. }
  792. public java.lang.String toXmlString() {
  793. return _user.toXmlString();
  794. }
  795. public void persist()
  796. throws com.liferay.portal.kernel.exception.SystemException {
  797. _user.persist();
  798. }
  799. public java.util.List<com.liferay.portal.model.Address> getAddresses()
  800. throws com.liferay.portal.kernel.exception.SystemException {
  801. return _user.getAddresses();
  802. }
  803. public java.util.Date getBirthday()
  804. throws com.liferay.portal.kernel.exception.PortalException,
  805. com.liferay.portal.kernel.exception.SystemException {
  806. return _user.getBirthday();
  807. }
  808. public java.lang.String getCompanyMx()
  809. throws com.liferay.portal.kernel.exception.PortalException,
  810. com.liferay.portal.kernel.exception.SystemException {
  811. return _user.getCompanyMx();
  812. }
  813. public com.liferay.portal.model.Contact getContact()
  814. throws com.liferay.portal.kernel.exception.PortalException,
  815. com.liferay.portal.kernel.exception.SystemException {
  816. return _user.getContact();
  817. }
  818. public java.lang.String getDigest(java.lang.String password) {
  819. return _user.getDigest(password);
  820. }
  821. public java.lang.String getDisplayEmailAddress() {
  822. return _user.getDisplayEmailAddress();
  823. }
  824. public java.lang.String getDisplayURL(
  825. com.liferay.portal.theme.ThemeDisplay themeDisplay)
  826. throws com.liferay.portal.kernel.exception.PortalException,
  827. com.liferay.portal.kernel.exception.SystemException {
  828. return _user.getDisplayURL(themeDisplay);
  829. }
  830. public java.lang.String getDisplayURL(java.lang.String portalURL,
  831. java.lang.String mainPath)
  832. throws com.liferay.portal.kernel.exception.PortalException,
  833. com.liferay.portal.kernel.exception.SystemException {
  834. return _user.getDisplayURL(portalURL, mainPath);
  835. }
  836. public boolean getFemale()
  837. throws com.liferay.portal.kernel.exception.PortalException,
  838. com.liferay.portal.kernel.exception.SystemException {
  839. return _user.getFemale();
  840. }
  841. public java.lang.String getFullName() {
  842. return _user.getFullName();
  843. }
  844. public com.liferay.portal.model.Group getGroup()
  845. throws com.liferay.portal.kernel.exception.PortalException,
  846. com.liferay.portal.kernel.exception.SystemException {
  847. return _user.getGroup();
  848. }
  849. public long[] getGroupIds()
  850. throws com.liferay.portal.kernel.exception.PortalException,
  851. com.liferay.portal.kernel.exception.SystemException {
  852. return _user.getGroupIds();
  853. }
  854. public java.util.List<com.liferay.portal.model.Group> getGroups()
  855. throws com.liferay.portal.kernel.exception.PortalException,
  856. com.liferay.portal.kernel.exception.SystemException {
  857. return _user.getGroups();
  858. }
  859. public java.util.Locale getLocale() {
  860. return _user.getLocale();
  861. }
  862. public java.lang.String getLogin()
  863. throws com.liferay.portal.kernel.exception.PortalException,
  864. com.liferay.portal.kernel.exception.SystemException {
  865. return _user.getLogin();
  866. }
  867. public boolean getMale()
  868. throws com.liferay.portal.kernel.exception.PortalException,
  869. com.liferay.portal.kernel.exception.SystemException {
  870. return _user.getMale();
  871. }
  872. public java.util.List<com.liferay.portal.model.Group> getMySites()
  873. throws com.liferay.portal.kernel.exception.PortalException,
  874. com.liferay.portal.kernel.exception.SystemException {
  875. return _user.getMySites();
  876. }
  877. public java.util.List<com.liferay.portal.model.Group> getMySites(int max)
  878. throws com.liferay.portal.kernel.exception.PortalException,
  879. com.liferay.portal.kernel.exception.SystemException {
  880. return _user.getMySites(max);
  881. }
  882. public java.util.List<com.liferay.portal.model.Group> getMySites(
  883. java.lang.String[] classNames, int max)
  884. throws com.liferay.portal.kernel.exception.PortalException,
  885. com.liferay.portal.kernel.exception.SystemException {
  886. return _user.getMySites(classNames, max);
  887. }
  888. public long[] getOrganizationIds()
  889. throws com.liferay.portal.kernel.exception.PortalException,
  890. com.liferay.portal.kernel.exception.SystemException {
  891. return _user.getOrganizationIds();
  892. }
  893. public java.util.List<com.liferay.portal.model.Organization> getOrganizations()
  894. throws com.liferay.portal.kernel.exception.PortalException,
  895. com.liferay.portal.kernel.exception.SystemException {
  896. return _user.getOrganizations();
  897. }
  898. public boolean getPasswordModified() {
  899. return _user.getPasswordModified();
  900. }
  901. public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
  902. throws com.liferay.portal.kernel.exception.PortalException,
  903. com.liferay.portal.kernel.exception.SystemException {
  904. return _user.getPasswordPolicy();
  905. }
  906. public java.lang.String getPasswordUnencrypted() {
  907. return _user.getPasswordUnencrypted();
  908. }
  909. public java.util.List<com.liferay.portal.model.Phone> getPhones()
  910. throws com.liferay.portal.kernel.exception.SystemException {
  911. return _user.getPhones();
  912. }
  913. public java.lang.String getPortraitURL(
  914. com.liferay.portal.theme.ThemeDisplay themeDisplay)
  915. throws com.liferay.portal.kernel.exception.PortalException,
  916. com.liferay.portal.kernel.exception.SystemException {
  917. return _user.getPortraitURL(themeDisplay);
  918. }
  919. public int getPrivateLayoutsPageCount()
  920. throws com.liferay.portal.kernel.exception.PortalException,
  921. com.liferay.portal.kernel.exception.SystemException {
  922. return _user.getPrivateLayoutsPageCount();
  923. }
  924. public int getPublicLayoutsPageCount()
  925. throws com.liferay.portal.kernel.exception.PortalException,
  926. com.liferay.portal.kernel.exception.SystemException {
  927. return _user.getPublicLayoutsPageCount();
  928. }
  929. public java.util.Set<java.lang.String> getReminderQueryQuestions()
  930. throws com.liferay.portal.kernel.exception.PortalException,
  931. com.liferay.portal.kernel.exception.SystemException {
  932. return _user.getReminderQueryQuestions();
  933. }
  934. public long[] getRoleIds()
  935. throws com.liferay.portal.kernel.exception.SystemException {
  936. return _user.getRoleIds();
  937. }
  938. public java.util.List<com.liferay.portal.model.Role> getRoles()
  939. throws com.liferay.portal.kernel.exception.SystemException {
  940. return _user.getRoles();
  941. }
  942. public double getSocialContributionEquity() {
  943. return _user.getSocialContributionEquity();
  944. }
  945. public double getSocialContributionEquity(long groupId) {
  946. return _user.getSocialContributionEquity(groupId);
  947. }
  948. public double getSocialParticipationEquity() {
  949. return _user.getSocialParticipationEquity();
  950. }
  951. public double getSocialParticipationEquity(long groupId) {
  952. return _user.getSocialParticipationEquity(groupId);
  953. }
  954. public double getSocialPersonalEquity() {
  955. return _user.getSocialPersonalEquity();
  956. }
  957. public double getSocialPersonalEquity(long groupId) {
  958. return _user.getSocialPersonalEquity(groupId);
  959. }
  960. public long[] getTeamIds()
  961. throws com.liferay.portal.kernel.exception.SystemException {
  962. return _user.getTeamIds();
  963. }
  964. public java.util.List<com.liferay.portal.model.Team> getTeams()
  965. throws com.liferay.portal.kernel.exception.SystemException {
  966. return _user.getTeams();
  967. }
  968. public long[] getUserGroupIds()
  969. throws com.liferay.portal.kernel.exception.SystemException {
  970. return _user.getUserGroupIds();
  971. }
  972. public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups()
  973. throws com.liferay.portal.kernel.exception.SystemException {
  974. return _user.getUserGroups();
  975. }
  976. public java.util.TimeZone getTimeZone() {
  977. return _user.getTimeZone();
  978. }
  979. public boolean hasCompanyMx()
  980. throws com.liferay.portal.kernel.exception.PortalException,
  981. com.liferay.portal.kernel.exception.SystemException {
  982. return _user.hasCompanyMx();
  983. }
  984. public boolean hasCompanyMx(java.lang.String emailAddress)
  985. throws com.liferay.portal.kernel.exception.PortalException,
  986. com.liferay.portal.kernel.exception.SystemException {
  987. return _user.hasCompanyMx(emailAddress);
  988. }
  989. public boolean hasMySites()
  990. throws com.liferay.portal.kernel.exception.PortalException,
  991. com.liferay.portal.kernel.exception.SystemException {
  992. return _user.hasMySites();
  993. }
  994. public boolean hasOrganization()
  995. throws com.liferay.portal.kernel.exception.PortalException,
  996. com.liferay.portal.kernel.exception.SystemException {
  997. return _user.hasOrganization();
  998. }
  999. public boolean hasPrivateLayouts()
  1000. throws com.liferay.portal.kernel.exception.PortalException,
  1001. com.liferay.portal.kernel.exception.SystemException {
  1002. return _user.hasPrivateLayouts();
  1003. }
  1004. public boolean hasPublicLayouts()
  1005. throws com.liferay.portal.kernel.exception.PortalException,
  1006. com.liferay.portal.kernel.exception.SystemException {
  1007. return _user.hasPublicLayouts();
  1008. }
  1009. public boolean hasReminderQuery() {
  1010. return _user.hasReminderQuery();
  1011. }
  1012. public boolean isActive() {
  1013. return _user.isActive();
  1014. }
  1015. public boolean isFemale()
  1016. throws com.liferay.portal.kernel.exception.PortalException,
  1017. com.liferay.portal.kernel.exception.SystemException {
  1018. return _user.isFemale();
  1019. }
  1020. public boolean isMale()
  1021. throws com.liferay.portal.kernel.exception.PortalException,
  1022. com.liferay.portal.kernel.exception.SystemException {
  1023. return _user.isMale();
  1024. }
  1025. public boolean isPasswordModified() {
  1026. return _user.isPasswordModified();
  1027. }
  1028. public void setPasswordModified(boolean passwordModified) {
  1029. _user.setPasswordModified(passwordModified);
  1030. }
  1031. public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
  1032. _user.setPasswordUnencrypted(passwordUnencrypted);
  1033. }
  1034. public void updateSocialContributionEquity(long groupId, double value) {
  1035. _user.updateSocialContributionEquity(groupId, value);
  1036. }
  1037. public void updateSocialParticipationEquity(long groupId, double value) {
  1038. _user.updateSocialParticipationEquity(groupId, value);
  1039. }
  1040. public java.util.List<com.liferay.portal.model.Website> getWebsites()
  1041. throws com.liferay.portal.kernel.exception.SystemException {
  1042. return _user.getWebsites();
  1043. }
  1044. public User getWrappedUser() {
  1045. return _user;
  1046. }
  1047. public void resetOriginalValues() {
  1048. _user.resetOriginalValues();
  1049. }
  1050. private User _user;
  1051. }