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