001    /**
002     * Copyright (c) 2000-2011 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.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 {
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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Determines 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            * Gets 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            * Gets 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            * Gets 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            * Determines 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            * Gets 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            * Determines 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Gets 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            * Determines 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            * Gets 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            * Gets 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            * Determines 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            * Gets the active of this user.
790            *
791            * @return the active of this user
792            */
793            public boolean getActive() {
794                    return _user.getActive();
795            }
796    
797            /**
798            * Determines if this user is active.
799            *
800            * @return <code>true</code> if this user is active; <code>false</code> otherwise
801            */
802            public boolean isActive() {
803                    return _user.isActive();
804            }
805    
806            /**
807            * Sets whether this user is active.
808            *
809            * @param active the active of this user
810            */
811            public void setActive(boolean active) {
812                    _user.setActive(active);
813            }
814    
815            public boolean isNew() {
816                    return _user.isNew();
817            }
818    
819            public void setNew(boolean n) {
820                    _user.setNew(n);
821            }
822    
823            public boolean isCachedModel() {
824                    return _user.isCachedModel();
825            }
826    
827            public void setCachedModel(boolean cachedModel) {
828                    _user.setCachedModel(cachedModel);
829            }
830    
831            public boolean isEscapedModel() {
832                    return _user.isEscapedModel();
833            }
834    
835            public void setEscapedModel(boolean escapedModel) {
836                    _user.setEscapedModel(escapedModel);
837            }
838    
839            public java.io.Serializable getPrimaryKeyObj() {
840                    return _user.getPrimaryKeyObj();
841            }
842    
843            public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
844                    _user.setPrimaryKeyObj(primaryKeyObj);
845            }
846    
847            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
848                    return _user.getExpandoBridge();
849            }
850    
851            public void setExpandoBridgeAttributes(
852                    com.liferay.portal.service.ServiceContext serviceContext) {
853                    _user.setExpandoBridgeAttributes(serviceContext);
854            }
855    
856            @Override
857            public java.lang.Object clone() {
858                    return new UserWrapper((User)_user.clone());
859            }
860    
861            public int compareTo(com.liferay.portal.model.User user) {
862                    return _user.compareTo(user);
863            }
864    
865            @Override
866            public int hashCode() {
867                    return _user.hashCode();
868            }
869    
870            public com.liferay.portal.model.CacheModel<com.liferay.portal.model.User> toCacheModel() {
871                    return _user.toCacheModel();
872            }
873    
874            public com.liferay.portal.model.User toEscapedModel() {
875                    return new UserWrapper(_user.toEscapedModel());
876            }
877    
878            @Override
879            public java.lang.String toString() {
880                    return _user.toString();
881            }
882    
883            public java.lang.String toXmlString() {
884                    return _user.toXmlString();
885            }
886    
887            public void persist()
888                    throws com.liferay.portal.kernel.exception.SystemException {
889                    _user.persist();
890            }
891    
892            public java.util.List<com.liferay.portal.model.Address> getAddresses()
893                    throws com.liferay.portal.kernel.exception.SystemException {
894                    return _user.getAddresses();
895            }
896    
897            public java.util.Date getBirthday()
898                    throws com.liferay.portal.kernel.exception.PortalException,
899                            com.liferay.portal.kernel.exception.SystemException {
900                    return _user.getBirthday();
901            }
902    
903            public java.lang.String getCompanyMx()
904                    throws com.liferay.portal.kernel.exception.PortalException,
905                            com.liferay.portal.kernel.exception.SystemException {
906                    return _user.getCompanyMx();
907            }
908    
909            public com.liferay.portal.model.Contact getContact()
910                    throws com.liferay.portal.kernel.exception.PortalException,
911                            com.liferay.portal.kernel.exception.SystemException {
912                    return _user.getContact();
913            }
914    
915            public java.lang.String getDigest(java.lang.String password) {
916                    return _user.getDigest(password);
917            }
918    
919            public java.lang.String getDisplayEmailAddress() {
920                    return _user.getDisplayEmailAddress();
921            }
922    
923            public java.lang.String getDisplayURL(
924                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
925                    throws com.liferay.portal.kernel.exception.PortalException,
926                            com.liferay.portal.kernel.exception.SystemException {
927                    return _user.getDisplayURL(themeDisplay);
928            }
929    
930            public java.lang.String getDisplayURL(java.lang.String portalURL,
931                    java.lang.String mainPath)
932                    throws com.liferay.portal.kernel.exception.PortalException,
933                            com.liferay.portal.kernel.exception.SystemException {
934                    return _user.getDisplayURL(portalURL, mainPath);
935            }
936    
937            public boolean getFemale()
938                    throws com.liferay.portal.kernel.exception.PortalException,
939                            com.liferay.portal.kernel.exception.SystemException {
940                    return _user.getFemale();
941            }
942    
943            public java.lang.String getFullName() {
944                    return _user.getFullName();
945            }
946    
947            public com.liferay.portal.model.Group getGroup()
948                    throws com.liferay.portal.kernel.exception.PortalException,
949                            com.liferay.portal.kernel.exception.SystemException {
950                    return _user.getGroup();
951            }
952    
953            public long[] getGroupIds()
954                    throws com.liferay.portal.kernel.exception.PortalException,
955                            com.liferay.portal.kernel.exception.SystemException {
956                    return _user.getGroupIds();
957            }
958    
959            public java.util.List<com.liferay.portal.model.Group> getGroups()
960                    throws com.liferay.portal.kernel.exception.PortalException,
961                            com.liferay.portal.kernel.exception.SystemException {
962                    return _user.getGroups();
963            }
964    
965            public java.util.Locale getLocale() {
966                    return _user.getLocale();
967            }
968    
969            public java.lang.String getLogin()
970                    throws com.liferay.portal.kernel.exception.PortalException,
971                            com.liferay.portal.kernel.exception.SystemException {
972                    return _user.getLogin();
973            }
974    
975            public boolean getMale()
976                    throws com.liferay.portal.kernel.exception.PortalException,
977                            com.liferay.portal.kernel.exception.SystemException {
978                    return _user.getMale();
979            }
980    
981            public java.util.List<com.liferay.portal.model.Group> getMyPlaces()
982                    throws com.liferay.portal.kernel.exception.PortalException,
983                            com.liferay.portal.kernel.exception.SystemException {
984                    return _user.getMyPlaces();
985            }
986    
987            public java.util.List<com.liferay.portal.model.Group> getMyPlaces(int max)
988                    throws com.liferay.portal.kernel.exception.PortalException,
989                            com.liferay.portal.kernel.exception.SystemException {
990                    return _user.getMyPlaces(max);
991            }
992    
993            public java.util.List<com.liferay.portal.model.Group> getMyPlaces(
994                    java.lang.String[] classNames, int max)
995                    throws com.liferay.portal.kernel.exception.PortalException,
996                            com.liferay.portal.kernel.exception.SystemException {
997                    return _user.getMyPlaces(classNames, max);
998            }
999    
1000            public long[] getOrganizationIds()
1001                    throws com.liferay.portal.kernel.exception.PortalException,
1002                            com.liferay.portal.kernel.exception.SystemException {
1003                    return _user.getOrganizationIds();
1004            }
1005    
1006            public java.util.List<com.liferay.portal.model.Organization> getOrganizations()
1007                    throws com.liferay.portal.kernel.exception.PortalException,
1008                            com.liferay.portal.kernel.exception.SystemException {
1009                    return _user.getOrganizations();
1010            }
1011    
1012            public boolean getPasswordModified() {
1013                    return _user.getPasswordModified();
1014            }
1015    
1016            public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
1017                    throws com.liferay.portal.kernel.exception.PortalException,
1018                            com.liferay.portal.kernel.exception.SystemException {
1019                    return _user.getPasswordPolicy();
1020            }
1021    
1022            public java.lang.String getPasswordUnencrypted() {
1023                    return _user.getPasswordUnencrypted();
1024            }
1025    
1026            public java.util.List<com.liferay.portal.model.Phone> getPhones()
1027                    throws com.liferay.portal.kernel.exception.SystemException {
1028                    return _user.getPhones();
1029            }
1030    
1031            public java.lang.String getPortraitURL(
1032                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
1033                    throws com.liferay.portal.kernel.exception.PortalException,
1034                            com.liferay.portal.kernel.exception.SystemException {
1035                    return _user.getPortraitURL(themeDisplay);
1036            }
1037    
1038            public int getPrivateLayoutsPageCount()
1039                    throws com.liferay.portal.kernel.exception.PortalException,
1040                            com.liferay.portal.kernel.exception.SystemException {
1041                    return _user.getPrivateLayoutsPageCount();
1042            }
1043    
1044            public int getPublicLayoutsPageCount()
1045                    throws com.liferay.portal.kernel.exception.PortalException,
1046                            com.liferay.portal.kernel.exception.SystemException {
1047                    return _user.getPublicLayoutsPageCount();
1048            }
1049    
1050            public java.util.Set<java.lang.String> getReminderQueryQuestions()
1051                    throws com.liferay.portal.kernel.exception.PortalException,
1052                            com.liferay.portal.kernel.exception.SystemException {
1053                    return _user.getReminderQueryQuestions();
1054            }
1055    
1056            public long[] getRoleIds()
1057                    throws com.liferay.portal.kernel.exception.SystemException {
1058                    return _user.getRoleIds();
1059            }
1060    
1061            public java.util.List<com.liferay.portal.model.Role> getRoles()
1062                    throws com.liferay.portal.kernel.exception.SystemException {
1063                    return _user.getRoles();
1064            }
1065    
1066            public double getSocialContributionEquity() {
1067                    return _user.getSocialContributionEquity();
1068            }
1069    
1070            public double getSocialContributionEquity(long groupId) {
1071                    return _user.getSocialContributionEquity(groupId);
1072            }
1073    
1074            public double getSocialParticipationEquity() {
1075                    return _user.getSocialParticipationEquity();
1076            }
1077    
1078            public double getSocialParticipationEquity(long groupId) {
1079                    return _user.getSocialParticipationEquity(groupId);
1080            }
1081    
1082            public double getSocialPersonalEquity() {
1083                    return _user.getSocialPersonalEquity();
1084            }
1085    
1086            public double getSocialPersonalEquity(long groupId) {
1087                    return _user.getSocialPersonalEquity(groupId);
1088            }
1089    
1090            public long[] getTeamIds()
1091                    throws com.liferay.portal.kernel.exception.SystemException {
1092                    return _user.getTeamIds();
1093            }
1094    
1095            public java.util.List<com.liferay.portal.model.Team> getTeams()
1096                    throws com.liferay.portal.kernel.exception.SystemException {
1097                    return _user.getTeams();
1098            }
1099    
1100            public long[] getUserGroupIds()
1101                    throws com.liferay.portal.kernel.exception.SystemException {
1102                    return _user.getUserGroupIds();
1103            }
1104    
1105            public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups()
1106                    throws com.liferay.portal.kernel.exception.SystemException {
1107                    return _user.getUserGroups();
1108            }
1109    
1110            public java.util.TimeZone getTimeZone() {
1111                    return _user.getTimeZone();
1112            }
1113    
1114            public boolean hasCompanyMx()
1115                    throws com.liferay.portal.kernel.exception.PortalException,
1116                            com.liferay.portal.kernel.exception.SystemException {
1117                    return _user.hasCompanyMx();
1118            }
1119    
1120            public boolean hasCompanyMx(java.lang.String emailAddress)
1121                    throws com.liferay.portal.kernel.exception.PortalException,
1122                            com.liferay.portal.kernel.exception.SystemException {
1123                    return _user.hasCompanyMx(emailAddress);
1124            }
1125    
1126            public boolean hasMyPlaces()
1127                    throws com.liferay.portal.kernel.exception.PortalException,
1128                            com.liferay.portal.kernel.exception.SystemException {
1129                    return _user.hasMyPlaces();
1130            }
1131    
1132            public boolean hasOrganization()
1133                    throws com.liferay.portal.kernel.exception.PortalException,
1134                            com.liferay.portal.kernel.exception.SystemException {
1135                    return _user.hasOrganization();
1136            }
1137    
1138            public boolean hasPrivateLayouts()
1139                    throws com.liferay.portal.kernel.exception.PortalException,
1140                            com.liferay.portal.kernel.exception.SystemException {
1141                    return _user.hasPrivateLayouts();
1142            }
1143    
1144            public boolean hasPublicLayouts()
1145                    throws com.liferay.portal.kernel.exception.PortalException,
1146                            com.liferay.portal.kernel.exception.SystemException {
1147                    return _user.hasPublicLayouts();
1148            }
1149    
1150            public boolean hasReminderQuery() {
1151                    return _user.hasReminderQuery();
1152            }
1153    
1154            public boolean isFemale()
1155                    throws com.liferay.portal.kernel.exception.PortalException,
1156                            com.liferay.portal.kernel.exception.SystemException {
1157                    return _user.isFemale();
1158            }
1159    
1160            public boolean isMale()
1161                    throws com.liferay.portal.kernel.exception.PortalException,
1162                            com.liferay.portal.kernel.exception.SystemException {
1163                    return _user.isMale();
1164            }
1165    
1166            public boolean isPasswordModified() {
1167                    return _user.isPasswordModified();
1168            }
1169    
1170            public void setPasswordModified(boolean passwordModified) {
1171                    _user.setPasswordModified(passwordModified);
1172            }
1173    
1174            public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
1175                    _user.setPasswordUnencrypted(passwordUnencrypted);
1176            }
1177    
1178            /**
1179            * @deprecated {@link #updateSocialContributionEquity(long, double)}
1180            */
1181            public void updateSocialContributionEquity(double value) {
1182                    _user.updateSocialContributionEquity(value);
1183            }
1184    
1185            public void updateSocialContributionEquity(long groupId, double value) {
1186                    _user.updateSocialContributionEquity(groupId, value);
1187            }
1188    
1189            /**
1190            * @deprecated {@link #updateSocialParticipationEquity(long, double)}
1191            */
1192            public void updateSocialParticipationEquity(double value) {
1193                    _user.updateSocialParticipationEquity(value);
1194            }
1195    
1196            public void updateSocialParticipationEquity(long groupId, double value) {
1197                    _user.updateSocialParticipationEquity(groupId, value);
1198            }
1199    
1200            public java.util.List<com.liferay.portal.model.Website> getWebsites()
1201                    throws com.liferay.portal.kernel.exception.SystemException {
1202                    return _user.getWebsites();
1203            }
1204    
1205            public User getWrappedUser() {
1206                    return _user;
1207            }
1208    
1209            public void resetOriginalValues() {
1210                    _user.resetOriginalValues();
1211            }
1212    
1213            private User _user;
1214    }