001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link User}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       User
024     * @generated
025     */
026    public class UserWrapper implements User, ModelWrapper<User> {
027            public UserWrapper(User user) {
028                    _user = user;
029            }
030    
031            public Class<?> getModelClass() {
032                    return User.class;
033            }
034    
035            public String getModelClassName() {
036                    return User.class.getName();
037            }
038    
039            /**
040            * Returns the primary key of this user.
041            *
042            * @return the primary key of this user
043            */
044            public long getPrimaryKey() {
045                    return _user.getPrimaryKey();
046            }
047    
048            /**
049            * Sets the primary key of this user.
050            *
051            * @param primaryKey the primary key of this user
052            */
053            public void setPrimaryKey(long primaryKey) {
054                    _user.setPrimaryKey(primaryKey);
055            }
056    
057            /**
058            * Returns the uuid of this user.
059            *
060            * @return the uuid of this user
061            */
062            public java.lang.String getUuid() {
063                    return _user.getUuid();
064            }
065    
066            /**
067            * Sets the uuid of this user.
068            *
069            * @param uuid the uuid of this user
070            */
071            public void setUuid(java.lang.String uuid) {
072                    _user.setUuid(uuid);
073            }
074    
075            /**
076            * Returns the user ID of this user.
077            *
078            * @return the user ID of this user
079            */
080            public long getUserId() {
081                    return _user.getUserId();
082            }
083    
084            /**
085            * Sets the user ID of this user.
086            *
087            * @param userId the user ID of this user
088            */
089            public void setUserId(long userId) {
090                    _user.setUserId(userId);
091            }
092    
093            /**
094            * Returns the user uuid of this user.
095            *
096            * @return the user uuid of this user
097            * @throws SystemException if a system exception occurred
098            */
099            public java.lang.String getUserUuid()
100                    throws com.liferay.portal.kernel.exception.SystemException {
101                    return _user.getUserUuid();
102            }
103    
104            /**
105            * Sets the user uuid of this user.
106            *
107            * @param userUuid the user uuid of this user
108            */
109            public void setUserUuid(java.lang.String userUuid) {
110                    _user.setUserUuid(userUuid);
111            }
112    
113            /**
114            * Returns the company ID of this user.
115            *
116            * @return the company ID of this user
117            */
118            public long getCompanyId() {
119                    return _user.getCompanyId();
120            }
121    
122            /**
123            * Sets the company ID of this user.
124            *
125            * @param companyId the company ID of this user
126            */
127            public void setCompanyId(long companyId) {
128                    _user.setCompanyId(companyId);
129            }
130    
131            /**
132            * Returns the create date of this user.
133            *
134            * @return the create date of this user
135            */
136            public java.util.Date getCreateDate() {
137                    return _user.getCreateDate();
138            }
139    
140            /**
141            * Sets the create date of this user.
142            *
143            * @param createDate the create date of this user
144            */
145            public void setCreateDate(java.util.Date createDate) {
146                    _user.setCreateDate(createDate);
147            }
148    
149            /**
150            * Returns the modified date of this user.
151            *
152            * @return the modified date of this user
153            */
154            public java.util.Date getModifiedDate() {
155                    return _user.getModifiedDate();
156            }
157    
158            /**
159            * Sets the modified date of this user.
160            *
161            * @param modifiedDate the modified date of this user
162            */
163            public void setModifiedDate(java.util.Date modifiedDate) {
164                    _user.setModifiedDate(modifiedDate);
165            }
166    
167            /**
168            * Returns the default user of this user.
169            *
170            * @return the default user of this user
171            */
172            public boolean getDefaultUser() {
173                    return _user.getDefaultUser();
174            }
175    
176            /**
177            * Returns <code>true</code> if this user is default user.
178            *
179            * @return <code>true</code> if this user is default user; <code>false</code> otherwise
180            */
181            public boolean isDefaultUser() {
182                    return _user.isDefaultUser();
183            }
184    
185            /**
186            * Sets whether this user is default user.
187            *
188            * @param defaultUser the default user of this user
189            */
190            public void setDefaultUser(boolean defaultUser) {
191                    _user.setDefaultUser(defaultUser);
192            }
193    
194            /**
195            * Returns the contact ID of this user.
196            *
197            * @return the contact ID of this user
198            */
199            public long getContactId() {
200                    return _user.getContactId();
201            }
202    
203            /**
204            * Sets the contact ID of this user.
205            *
206            * @param contactId the contact ID of this user
207            */
208            public void setContactId(long contactId) {
209                    _user.setContactId(contactId);
210            }
211    
212            /**
213            * Returns the password of this user.
214            *
215            * @return the password of this user
216            */
217            public java.lang.String getPassword() {
218                    return _user.getPassword();
219            }
220    
221            /**
222            * Sets the password of this user.
223            *
224            * @param password the password of this user
225            */
226            public void setPassword(java.lang.String password) {
227                    _user.setPassword(password);
228            }
229    
230            /**
231            * Returns the password encrypted of this user.
232            *
233            * @return the password encrypted of this user
234            */
235            public boolean getPasswordEncrypted() {
236                    return _user.getPasswordEncrypted();
237            }
238    
239            /**
240            * Returns <code>true</code> if this user is password encrypted.
241            *
242            * @return <code>true</code> if this user is password encrypted; <code>false</code> otherwise
243            */
244            public boolean isPasswordEncrypted() {
245                    return _user.isPasswordEncrypted();
246            }
247    
248            /**
249            * Sets whether this user is password encrypted.
250            *
251            * @param passwordEncrypted the password encrypted of this user
252            */
253            public void setPasswordEncrypted(boolean passwordEncrypted) {
254                    _user.setPasswordEncrypted(passwordEncrypted);
255            }
256    
257            /**
258            * Returns the password reset of this user.
259            *
260            * @return the password reset of this user
261            */
262            public boolean getPasswordReset() {
263                    return _user.getPasswordReset();
264            }
265    
266            /**
267            * Returns <code>true</code> if this user is password reset.
268            *
269            * @return <code>true</code> if this user is password reset; <code>false</code> otherwise
270            */
271            public boolean isPasswordReset() {
272                    return _user.isPasswordReset();
273            }
274    
275            /**
276            * Sets whether this user is password reset.
277            *
278            * @param passwordReset the password reset of this user
279            */
280            public void setPasswordReset(boolean passwordReset) {
281                    _user.setPasswordReset(passwordReset);
282            }
283    
284            /**
285            * Returns the password modified date of this user.
286            *
287            * @return the password modified date of this user
288            */
289            public java.util.Date getPasswordModifiedDate() {
290                    return _user.getPasswordModifiedDate();
291            }
292    
293            /**
294            * Sets the password modified date of this user.
295            *
296            * @param passwordModifiedDate the password modified date of this user
297            */
298            public void setPasswordModifiedDate(java.util.Date passwordModifiedDate) {
299                    _user.setPasswordModifiedDate(passwordModifiedDate);
300            }
301    
302            /**
303            * Returns the digest of this user.
304            *
305            * @return the digest of this user
306            */
307            public java.lang.String getDigest() {
308                    return _user.getDigest();
309            }
310    
311            /**
312            * Sets the digest of this user.
313            *
314            * @param digest the digest of this user
315            */
316            public void setDigest(java.lang.String digest) {
317                    _user.setDigest(digest);
318            }
319    
320            /**
321            * Returns the reminder query question of this user.
322            *
323            * @return the reminder query question of this user
324            */
325            public java.lang.String getReminderQueryQuestion() {
326                    return _user.getReminderQueryQuestion();
327            }
328    
329            /**
330            * Sets the reminder query question of this user.
331            *
332            * @param reminderQueryQuestion the reminder query question of this user
333            */
334            public void setReminderQueryQuestion(java.lang.String reminderQueryQuestion) {
335                    _user.setReminderQueryQuestion(reminderQueryQuestion);
336            }
337    
338            /**
339            * Returns the reminder query answer of this user.
340            *
341            * @return the reminder query answer of this user
342            */
343            public java.lang.String getReminderQueryAnswer() {
344                    return _user.getReminderQueryAnswer();
345            }
346    
347            /**
348            * Sets the reminder query answer of this user.
349            *
350            * @param reminderQueryAnswer the reminder query answer of this user
351            */
352            public void setReminderQueryAnswer(java.lang.String reminderQueryAnswer) {
353                    _user.setReminderQueryAnswer(reminderQueryAnswer);
354            }
355    
356            /**
357            * Returns the grace login count of this user.
358            *
359            * @return the grace login count of this user
360            */
361            public int getGraceLoginCount() {
362                    return _user.getGraceLoginCount();
363            }
364    
365            /**
366            * Sets the grace login count of this user.
367            *
368            * @param graceLoginCount the grace login count of this user
369            */
370            public void setGraceLoginCount(int graceLoginCount) {
371                    _user.setGraceLoginCount(graceLoginCount);
372            }
373    
374            /**
375            * Returns the screen name of this user.
376            *
377            * @return the screen name of this user
378            */
379            public java.lang.String getScreenName() {
380                    return _user.getScreenName();
381            }
382    
383            /**
384            * Sets the screen name of this user.
385            *
386            * @param screenName the screen name of this user
387            */
388            public void setScreenName(java.lang.String screenName) {
389                    _user.setScreenName(screenName);
390            }
391    
392            /**
393            * Returns the email address of this user.
394            *
395            * @return the email address of this user
396            */
397            public java.lang.String getEmailAddress() {
398                    return _user.getEmailAddress();
399            }
400    
401            /**
402            * Sets the email address of this user.
403            *
404            * @param emailAddress the email address of this user
405            */
406            public void setEmailAddress(java.lang.String emailAddress) {
407                    _user.setEmailAddress(emailAddress);
408            }
409    
410            /**
411            * Returns the facebook ID of this user.
412            *
413            * @return the facebook ID of this user
414            */
415            public long getFacebookId() {
416                    return _user.getFacebookId();
417            }
418    
419            /**
420            * Sets the facebook ID of this user.
421            *
422            * @param facebookId the facebook ID of this user
423            */
424            public void setFacebookId(long facebookId) {
425                    _user.setFacebookId(facebookId);
426            }
427    
428            /**
429            * Returns the open ID of this user.
430            *
431            * @return the open ID of this user
432            */
433            public java.lang.String getOpenId() {
434                    return _user.getOpenId();
435            }
436    
437            /**
438            * Sets the open ID of this user.
439            *
440            * @param openId the open ID of this user
441            */
442            public void setOpenId(java.lang.String openId) {
443                    _user.setOpenId(openId);
444            }
445    
446            /**
447            * Returns the portrait ID of this user.
448            *
449            * @return the portrait ID of this user
450            */
451            public long getPortraitId() {
452                    return _user.getPortraitId();
453            }
454    
455            /**
456            * Sets the portrait ID of this user.
457            *
458            * @param portraitId the portrait ID of this user
459            */
460            public void setPortraitId(long portraitId) {
461                    _user.setPortraitId(portraitId);
462            }
463    
464            /**
465            * Returns the language ID of this user.
466            *
467            * @return the language ID of this user
468            */
469            public java.lang.String getLanguageId() {
470                    return _user.getLanguageId();
471            }
472    
473            /**
474            * Sets the language ID of this user.
475            *
476            * @param languageId the language ID of this user
477            */
478            public void setLanguageId(java.lang.String languageId) {
479                    _user.setLanguageId(languageId);
480            }
481    
482            /**
483            * Returns the time zone ID of this user.
484            *
485            * @return the time zone ID of this user
486            */
487            public java.lang.String getTimeZoneId() {
488                    return _user.getTimeZoneId();
489            }
490    
491            /**
492            * Sets the time zone ID of this user.
493            *
494            * @param timeZoneId the time zone ID of this user
495            */
496            public void setTimeZoneId(java.lang.String timeZoneId) {
497                    _user.setTimeZoneId(timeZoneId);
498            }
499    
500            /**
501            * Returns the greeting of this user.
502            *
503            * @return the greeting of this user
504            */
505            public java.lang.String getGreeting() {
506                    return _user.getGreeting();
507            }
508    
509            /**
510            * Sets the greeting of this user.
511            *
512            * @param greeting the greeting of this user
513            */
514            public void setGreeting(java.lang.String greeting) {
515                    _user.setGreeting(greeting);
516            }
517    
518            /**
519            * Returns the comments of this user.
520            *
521            * @return the comments of this user
522            */
523            public java.lang.String getComments() {
524                    return _user.getComments();
525            }
526    
527            /**
528            * Sets the comments of this user.
529            *
530            * @param comments the comments of this user
531            */
532            public void setComments(java.lang.String comments) {
533                    _user.setComments(comments);
534            }
535    
536            /**
537            * Returns the first name of this user.
538            *
539            * @return the first name of this user
540            */
541            public java.lang.String getFirstName() {
542                    return _user.getFirstName();
543            }
544    
545            /**
546            * Sets the first name of this user.
547            *
548            * @param firstName the first name of this user
549            */
550            public void setFirstName(java.lang.String firstName) {
551                    _user.setFirstName(firstName);
552            }
553    
554            /**
555            * Returns the middle name of this user.
556            *
557            * @return the middle name of this user
558            */
559            public java.lang.String getMiddleName() {
560                    return _user.getMiddleName();
561            }
562    
563            /**
564            * Sets the middle name of this user.
565            *
566            * @param middleName the middle name of this user
567            */
568            public void setMiddleName(java.lang.String middleName) {
569                    _user.setMiddleName(middleName);
570            }
571    
572            /**
573            * Returns the last name of this user.
574            *
575            * @return the last name of this user
576            */
577            public java.lang.String getLastName() {
578                    return _user.getLastName();
579            }
580    
581            /**
582            * Sets the last name of this user.
583            *
584            * @param lastName the last name of this user
585            */
586            public void setLastName(java.lang.String lastName) {
587                    _user.setLastName(lastName);
588            }
589    
590            /**
591            * Returns the job title of this user.
592            *
593            * @return the job title of this user
594            */
595            public java.lang.String getJobTitle() {
596                    return _user.getJobTitle();
597            }
598    
599            /**
600            * Sets the job title of this user.
601            *
602            * @param jobTitle the job title of this user
603            */
604            public void setJobTitle(java.lang.String jobTitle) {
605                    _user.setJobTitle(jobTitle);
606            }
607    
608            /**
609            * Returns the login date of this user.
610            *
611            * @return the login date of this user
612            */
613            public java.util.Date getLoginDate() {
614                    return _user.getLoginDate();
615            }
616    
617            /**
618            * Sets the login date of this user.
619            *
620            * @param loginDate the login date of this user
621            */
622            public void setLoginDate(java.util.Date loginDate) {
623                    _user.setLoginDate(loginDate);
624            }
625    
626            /**
627            * Returns the login i p of this user.
628            *
629            * @return the login i p of this user
630            */
631            public java.lang.String getLoginIP() {
632                    return _user.getLoginIP();
633            }
634    
635            /**
636            * Sets the login i p of this user.
637            *
638            * @param loginIP the login i p of this user
639            */
640            public void setLoginIP(java.lang.String loginIP) {
641                    _user.setLoginIP(loginIP);
642            }
643    
644            /**
645            * Returns the last login date of this user.
646            *
647            * @return the last login date of this user
648            */
649            public java.util.Date getLastLoginDate() {
650                    return _user.getLastLoginDate();
651            }
652    
653            /**
654            * Sets the last login date of this user.
655            *
656            * @param lastLoginDate the last login date of this user
657            */
658            public void setLastLoginDate(java.util.Date lastLoginDate) {
659                    _user.setLastLoginDate(lastLoginDate);
660            }
661    
662            /**
663            * Returns the last login i p of this user.
664            *
665            * @return the last login i p of this user
666            */
667            public java.lang.String getLastLoginIP() {
668                    return _user.getLastLoginIP();
669            }
670    
671            /**
672            * Sets the last login i p of this user.
673            *
674            * @param lastLoginIP the last login i p of this user
675            */
676            public void setLastLoginIP(java.lang.String lastLoginIP) {
677                    _user.setLastLoginIP(lastLoginIP);
678            }
679    
680            /**
681            * Returns the last failed login date of this user.
682            *
683            * @return the last failed login date of this user
684            */
685            public java.util.Date getLastFailedLoginDate() {
686                    return _user.getLastFailedLoginDate();
687            }
688    
689            /**
690            * Sets the last failed login date of this user.
691            *
692            * @param lastFailedLoginDate the last failed login date of this user
693            */
694            public void setLastFailedLoginDate(java.util.Date lastFailedLoginDate) {
695                    _user.setLastFailedLoginDate(lastFailedLoginDate);
696            }
697    
698            /**
699            * Returns the failed login attempts of this user.
700            *
701            * @return the failed login attempts of this user
702            */
703            public int getFailedLoginAttempts() {
704                    return _user.getFailedLoginAttempts();
705            }
706    
707            /**
708            * Sets the failed login attempts of this user.
709            *
710            * @param failedLoginAttempts the failed login attempts of this user
711            */
712            public void setFailedLoginAttempts(int failedLoginAttempts) {
713                    _user.setFailedLoginAttempts(failedLoginAttempts);
714            }
715    
716            /**
717            * Returns the lockout of this user.
718            *
719            * @return the lockout of this user
720            */
721            public boolean getLockout() {
722                    return _user.getLockout();
723            }
724    
725            /**
726            * Returns <code>true</code> if this user is lockout.
727            *
728            * @return <code>true</code> if this user is lockout; <code>false</code> otherwise
729            */
730            public boolean isLockout() {
731                    return _user.isLockout();
732            }
733    
734            /**
735            * Sets whether this user is lockout.
736            *
737            * @param lockout the lockout of this user
738            */
739            public void setLockout(boolean lockout) {
740                    _user.setLockout(lockout);
741            }
742    
743            /**
744            * Returns the lockout date of this user.
745            *
746            * @return the lockout date of this user
747            */
748            public java.util.Date getLockoutDate() {
749                    return _user.getLockoutDate();
750            }
751    
752            /**
753            * Sets the lockout date of this user.
754            *
755            * @param lockoutDate the lockout date of this user
756            */
757            public void setLockoutDate(java.util.Date lockoutDate) {
758                    _user.setLockoutDate(lockoutDate);
759            }
760    
761            /**
762            * Returns the agreed to terms of use of this user.
763            *
764            * @return the agreed to terms of use of this user
765            */
766            public boolean getAgreedToTermsOfUse() {
767                    return _user.getAgreedToTermsOfUse();
768            }
769    
770            /**
771            * Returns <code>true</code> if this user is agreed to terms of use.
772            *
773            * @return <code>true</code> if this user is agreed to terms of use; <code>false</code> otherwise
774            */
775            public boolean isAgreedToTermsOfUse() {
776                    return _user.isAgreedToTermsOfUse();
777            }
778    
779            /**
780            * Sets whether this user is agreed to terms of use.
781            *
782            * @param agreedToTermsOfUse the agreed to terms of use of this user
783            */
784            public void setAgreedToTermsOfUse(boolean agreedToTermsOfUse) {
785                    _user.setAgreedToTermsOfUse(agreedToTermsOfUse);
786            }
787    
788            /**
789            * Returns the email address verified of this user.
790            *
791            * @return the email address verified of this user
792            */
793            public boolean getEmailAddressVerified() {
794                    return _user.getEmailAddressVerified();
795            }
796    
797            /**
798            * Returns <code>true</code> if this user is email address verified.
799            *
800            * @return <code>true</code> if this user is email address verified; <code>false</code> otherwise
801            */
802            public boolean isEmailAddressVerified() {
803                    return _user.isEmailAddressVerified();
804            }
805    
806            /**
807            * Sets whether this user is email address verified.
808            *
809            * @param emailAddressVerified the email address verified of this user
810            */
811            public void setEmailAddressVerified(boolean emailAddressVerified) {
812                    _user.setEmailAddressVerified(emailAddressVerified);
813            }
814    
815            /**
816            * Returns the status of this user.
817            *
818            * @return the status of this user
819            */
820            public int getStatus() {
821                    return _user.getStatus();
822            }
823    
824            /**
825            * Sets the status of this user.
826            *
827            * @param status the status of this user
828            */
829            public void setStatus(int status) {
830                    _user.setStatus(status);
831            }
832    
833            public boolean isNew() {
834                    return _user.isNew();
835            }
836    
837            public void setNew(boolean n) {
838                    _user.setNew(n);
839            }
840    
841            public boolean isCachedModel() {
842                    return _user.isCachedModel();
843            }
844    
845            public void setCachedModel(boolean cachedModel) {
846                    _user.setCachedModel(cachedModel);
847            }
848    
849            public boolean isEscapedModel() {
850                    return _user.isEscapedModel();
851            }
852    
853            public java.io.Serializable getPrimaryKeyObj() {
854                    return _user.getPrimaryKeyObj();
855            }
856    
857            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
858                    _user.setPrimaryKeyObj(primaryKeyObj);
859            }
860    
861            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
862                    return _user.getExpandoBridge();
863            }
864    
865            public void setExpandoBridgeAttributes(
866                    com.liferay.portal.service.ServiceContext serviceContext) {
867                    _user.setExpandoBridgeAttributes(serviceContext);
868            }
869    
870            @Override
871            public java.lang.Object clone() {
872                    return new UserWrapper((User)_user.clone());
873            }
874    
875            public int compareTo(com.liferay.portal.model.User user) {
876                    return _user.compareTo(user);
877            }
878    
879            @Override
880            public int hashCode() {
881                    return _user.hashCode();
882            }
883    
884            public com.liferay.portal.model.CacheModel<com.liferay.portal.model.User> toCacheModel() {
885                    return _user.toCacheModel();
886            }
887    
888            public com.liferay.portal.model.User toEscapedModel() {
889                    return new UserWrapper(_user.toEscapedModel());
890            }
891    
892            @Override
893            public java.lang.String toString() {
894                    return _user.toString();
895            }
896    
897            public java.lang.String toXmlString() {
898                    return _user.toXmlString();
899            }
900    
901            public void persist()
902                    throws com.liferay.portal.kernel.exception.SystemException {
903                    _user.persist();
904            }
905    
906            public java.util.List<com.liferay.portal.model.Address> getAddresses()
907                    throws com.liferay.portal.kernel.exception.SystemException {
908                    return _user.getAddresses();
909            }
910    
911            public java.util.Date getBirthday()
912                    throws com.liferay.portal.kernel.exception.PortalException,
913                            com.liferay.portal.kernel.exception.SystemException {
914                    return _user.getBirthday();
915            }
916    
917            public java.lang.String getCompanyMx()
918                    throws com.liferay.portal.kernel.exception.PortalException,
919                            com.liferay.portal.kernel.exception.SystemException {
920                    return _user.getCompanyMx();
921            }
922    
923            public com.liferay.portal.model.Contact getContact()
924                    throws com.liferay.portal.kernel.exception.PortalException,
925                            com.liferay.portal.kernel.exception.SystemException {
926                    return _user.getContact();
927            }
928    
929            public java.lang.String getDigest(java.lang.String password) {
930                    return _user.getDigest(password);
931            }
932    
933            public java.lang.String getDisplayEmailAddress() {
934                    return _user.getDisplayEmailAddress();
935            }
936    
937            public java.lang.String getDisplayURL(java.lang.String portalURL,
938                    java.lang.String mainPath)
939                    throws com.liferay.portal.kernel.exception.PortalException,
940                            com.liferay.portal.kernel.exception.SystemException {
941                    return _user.getDisplayURL(portalURL, mainPath);
942            }
943    
944            public java.lang.String getDisplayURL(
945                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
946                    throws com.liferay.portal.kernel.exception.PortalException,
947                            com.liferay.portal.kernel.exception.SystemException {
948                    return _user.getDisplayURL(themeDisplay);
949            }
950    
951            public boolean getFemale()
952                    throws com.liferay.portal.kernel.exception.PortalException,
953                            com.liferay.portal.kernel.exception.SystemException {
954                    return _user.getFemale();
955            }
956    
957            public java.lang.String getFullName() {
958                    return _user.getFullName();
959            }
960    
961            public com.liferay.portal.model.Group getGroup()
962                    throws com.liferay.portal.kernel.exception.PortalException,
963                            com.liferay.portal.kernel.exception.SystemException {
964                    return _user.getGroup();
965            }
966    
967            public long getGroupId()
968                    throws com.liferay.portal.kernel.exception.PortalException,
969                            com.liferay.portal.kernel.exception.SystemException {
970                    return _user.getGroupId();
971            }
972    
973            public long[] getGroupIds()
974                    throws com.liferay.portal.kernel.exception.PortalException,
975                            com.liferay.portal.kernel.exception.SystemException {
976                    return _user.getGroupIds();
977            }
978    
979            public java.util.List<com.liferay.portal.model.Group> getGroups()
980                    throws com.liferay.portal.kernel.exception.PortalException,
981                            com.liferay.portal.kernel.exception.SystemException {
982                    return _user.getGroups();
983            }
984    
985            public java.util.Locale getLocale() {
986                    return _user.getLocale();
987            }
988    
989            public java.lang.String getLogin()
990                    throws com.liferay.portal.kernel.exception.PortalException,
991                            com.liferay.portal.kernel.exception.SystemException {
992                    return _user.getLogin();
993            }
994    
995            public boolean getMale()
996                    throws com.liferay.portal.kernel.exception.PortalException,
997                            com.liferay.portal.kernel.exception.SystemException {
998                    return _user.getMale();
999            }
1000    
1001            public java.util.List<com.liferay.portal.model.Group> getMySites()
1002                    throws com.liferay.portal.kernel.exception.PortalException,
1003                            com.liferay.portal.kernel.exception.SystemException {
1004                    return _user.getMySites();
1005            }
1006    
1007            public java.util.List<com.liferay.portal.model.Group> getMySites(
1008                    boolean includeControlPanel, int max)
1009                    throws com.liferay.portal.kernel.exception.PortalException,
1010                            com.liferay.portal.kernel.exception.SystemException {
1011                    return _user.getMySites(includeControlPanel, max);
1012            }
1013    
1014            public java.util.List<com.liferay.portal.model.Group> getMySites(int max)
1015                    throws com.liferay.portal.kernel.exception.PortalException,
1016                            com.liferay.portal.kernel.exception.SystemException {
1017                    return _user.getMySites(max);
1018            }
1019    
1020            public java.util.List<com.liferay.portal.model.Group> getMySites(
1021                    java.lang.String[] classNames, boolean includeControlPanel, int max)
1022                    throws com.liferay.portal.kernel.exception.PortalException,
1023                            com.liferay.portal.kernel.exception.SystemException {
1024                    return _user.getMySites(classNames, includeControlPanel, max);
1025            }
1026    
1027            public java.util.List<com.liferay.portal.model.Group> getMySites(
1028                    java.lang.String[] classNames, int max)
1029                    throws com.liferay.portal.kernel.exception.PortalException,
1030                            com.liferay.portal.kernel.exception.SystemException {
1031                    return _user.getMySites(classNames, max);
1032            }
1033    
1034            public long[] getOrganizationIds()
1035                    throws com.liferay.portal.kernel.exception.PortalException,
1036                            com.liferay.portal.kernel.exception.SystemException {
1037                    return _user.getOrganizationIds();
1038            }
1039    
1040            public java.util.List<com.liferay.portal.model.Organization> getOrganizations()
1041                    throws com.liferay.portal.kernel.exception.PortalException,
1042                            com.liferay.portal.kernel.exception.SystemException {
1043                    return _user.getOrganizations();
1044            }
1045    
1046            public boolean getPasswordModified() {
1047                    return _user.getPasswordModified();
1048            }
1049    
1050            public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
1051                    throws com.liferay.portal.kernel.exception.PortalException,
1052                            com.liferay.portal.kernel.exception.SystemException {
1053                    return _user.getPasswordPolicy();
1054            }
1055    
1056            public java.lang.String getPasswordUnencrypted() {
1057                    return _user.getPasswordUnencrypted();
1058            }
1059    
1060            public java.util.List<com.liferay.portal.model.Phone> getPhones()
1061                    throws com.liferay.portal.kernel.exception.SystemException {
1062                    return _user.getPhones();
1063            }
1064    
1065            public java.lang.String getPortraitURL(
1066                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
1067                    throws com.liferay.portal.kernel.exception.PortalException,
1068                            com.liferay.portal.kernel.exception.SystemException {
1069                    return _user.getPortraitURL(themeDisplay);
1070            }
1071    
1072            public int getPrivateLayoutsPageCount()
1073                    throws com.liferay.portal.kernel.exception.PortalException,
1074                            com.liferay.portal.kernel.exception.SystemException {
1075                    return _user.getPrivateLayoutsPageCount();
1076            }
1077    
1078            public int getPublicLayoutsPageCount()
1079                    throws com.liferay.portal.kernel.exception.PortalException,
1080                            com.liferay.portal.kernel.exception.SystemException {
1081                    return _user.getPublicLayoutsPageCount();
1082            }
1083    
1084            public java.util.Set<java.lang.String> getReminderQueryQuestions()
1085                    throws com.liferay.portal.kernel.exception.PortalException,
1086                            com.liferay.portal.kernel.exception.SystemException {
1087                    return _user.getReminderQueryQuestions();
1088            }
1089    
1090            public long[] getRoleIds()
1091                    throws com.liferay.portal.kernel.exception.SystemException {
1092                    return _user.getRoleIds();
1093            }
1094    
1095            public java.util.List<com.liferay.portal.model.Role> getRoles()
1096                    throws com.liferay.portal.kernel.exception.SystemException {
1097                    return _user.getRoles();
1098            }
1099    
1100            public long[] getTeamIds()
1101                    throws com.liferay.portal.kernel.exception.SystemException {
1102                    return _user.getTeamIds();
1103            }
1104    
1105            public java.util.List<com.liferay.portal.model.Team> getTeams()
1106                    throws com.liferay.portal.kernel.exception.SystemException {
1107                    return _user.getTeams();
1108            }
1109    
1110            public java.util.TimeZone getTimeZone() {
1111                    return _user.getTimeZone();
1112            }
1113    
1114            public long[] getUserGroupIds()
1115                    throws com.liferay.portal.kernel.exception.SystemException {
1116                    return _user.getUserGroupIds();
1117            }
1118    
1119            public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups()
1120                    throws com.liferay.portal.kernel.exception.SystemException {
1121                    return _user.getUserGroups();
1122            }
1123    
1124            public java.util.List<com.liferay.portal.model.Website> getWebsites()
1125                    throws com.liferay.portal.kernel.exception.SystemException {
1126                    return _user.getWebsites();
1127            }
1128    
1129            public boolean hasCompanyMx()
1130                    throws com.liferay.portal.kernel.exception.PortalException,
1131                            com.liferay.portal.kernel.exception.SystemException {
1132                    return _user.hasCompanyMx();
1133            }
1134    
1135            public boolean hasCompanyMx(java.lang.String emailAddress)
1136                    throws com.liferay.portal.kernel.exception.PortalException,
1137                            com.liferay.portal.kernel.exception.SystemException {
1138                    return _user.hasCompanyMx(emailAddress);
1139            }
1140    
1141            public boolean hasMySites()
1142                    throws com.liferay.portal.kernel.exception.PortalException,
1143                            com.liferay.portal.kernel.exception.SystemException {
1144                    return _user.hasMySites();
1145            }
1146    
1147            public boolean hasOrganization()
1148                    throws com.liferay.portal.kernel.exception.PortalException,
1149                            com.liferay.portal.kernel.exception.SystemException {
1150                    return _user.hasOrganization();
1151            }
1152    
1153            public boolean hasPrivateLayouts()
1154                    throws com.liferay.portal.kernel.exception.PortalException,
1155                            com.liferay.portal.kernel.exception.SystemException {
1156                    return _user.hasPrivateLayouts();
1157            }
1158    
1159            public boolean hasPublicLayouts()
1160                    throws com.liferay.portal.kernel.exception.PortalException,
1161                            com.liferay.portal.kernel.exception.SystemException {
1162                    return _user.hasPublicLayouts();
1163            }
1164    
1165            public boolean hasReminderQuery() {
1166                    return _user.hasReminderQuery();
1167            }
1168    
1169            public boolean isActive() {
1170                    return _user.isActive();
1171            }
1172    
1173            public boolean isFemale()
1174                    throws com.liferay.portal.kernel.exception.PortalException,
1175                            com.liferay.portal.kernel.exception.SystemException {
1176                    return _user.isFemale();
1177            }
1178    
1179            public boolean isMale()
1180                    throws com.liferay.portal.kernel.exception.PortalException,
1181                            com.liferay.portal.kernel.exception.SystemException {
1182                    return _user.isMale();
1183            }
1184    
1185            public boolean isPasswordModified() {
1186                    return _user.isPasswordModified();
1187            }
1188    
1189            public void setPasswordModified(boolean passwordModified) {
1190                    _user.setPasswordModified(passwordModified);
1191            }
1192    
1193            public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
1194                    _user.setPasswordUnencrypted(passwordUnencrypted);
1195            }
1196    
1197            /**
1198             * @deprecated Renamed to {@link #getWrappedModel}
1199             */
1200            public User getWrappedUser() {
1201                    return _user;
1202            }
1203    
1204            public User getWrappedModel() {
1205                    return _user;
1206            }
1207    
1208            public void resetOriginalValues() {
1209                    _user.resetOriginalValues();
1210            }
1211    
1212            private User _user;
1213    }