001    /**
002     * Copyright (c) 2000-2010 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 {
027            public UserWrapper(User user) {
028                    _user = user;
029            }
030    
031            public long getPrimaryKey() {
032                    return _user.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _user.setPrimaryKey(pk);
037            }
038    
039            public java.lang.String getUuid() {
040                    return _user.getUuid();
041            }
042    
043            public void setUuid(java.lang.String uuid) {
044                    _user.setUuid(uuid);
045            }
046    
047            public long getUserId() {
048                    return _user.getUserId();
049            }
050    
051            public void setUserId(long userId) {
052                    _user.setUserId(userId);
053            }
054    
055            public java.lang.String getUserUuid()
056                    throws com.liferay.portal.kernel.exception.SystemException {
057                    return _user.getUserUuid();
058            }
059    
060            public void setUserUuid(java.lang.String userUuid) {
061                    _user.setUserUuid(userUuid);
062            }
063    
064            public long getCompanyId() {
065                    return _user.getCompanyId();
066            }
067    
068            public void setCompanyId(long companyId) {
069                    _user.setCompanyId(companyId);
070            }
071    
072            public java.util.Date getCreateDate() {
073                    return _user.getCreateDate();
074            }
075    
076            public void setCreateDate(java.util.Date createDate) {
077                    _user.setCreateDate(createDate);
078            }
079    
080            public java.util.Date getModifiedDate() {
081                    return _user.getModifiedDate();
082            }
083    
084            public void setModifiedDate(java.util.Date modifiedDate) {
085                    _user.setModifiedDate(modifiedDate);
086            }
087    
088            public boolean getDefaultUser() {
089                    return _user.getDefaultUser();
090            }
091    
092            public boolean isDefaultUser() {
093                    return _user.isDefaultUser();
094            }
095    
096            public void setDefaultUser(boolean defaultUser) {
097                    _user.setDefaultUser(defaultUser);
098            }
099    
100            public long getContactId() {
101                    return _user.getContactId();
102            }
103    
104            public void setContactId(long contactId) {
105                    _user.setContactId(contactId);
106            }
107    
108            public java.lang.String getPassword() {
109                    return _user.getPassword();
110            }
111    
112            public void setPassword(java.lang.String password) {
113                    _user.setPassword(password);
114            }
115    
116            public boolean getPasswordEncrypted() {
117                    return _user.getPasswordEncrypted();
118            }
119    
120            public boolean isPasswordEncrypted() {
121                    return _user.isPasswordEncrypted();
122            }
123    
124            public void setPasswordEncrypted(boolean passwordEncrypted) {
125                    _user.setPasswordEncrypted(passwordEncrypted);
126            }
127    
128            public boolean getPasswordReset() {
129                    return _user.getPasswordReset();
130            }
131    
132            public boolean isPasswordReset() {
133                    return _user.isPasswordReset();
134            }
135    
136            public void setPasswordReset(boolean passwordReset) {
137                    _user.setPasswordReset(passwordReset);
138            }
139    
140            public java.util.Date getPasswordModifiedDate() {
141                    return _user.getPasswordModifiedDate();
142            }
143    
144            public void setPasswordModifiedDate(java.util.Date passwordModifiedDate) {
145                    _user.setPasswordModifiedDate(passwordModifiedDate);
146            }
147    
148            public java.lang.String getReminderQueryQuestion() {
149                    return _user.getReminderQueryQuestion();
150            }
151    
152            public void setReminderQueryQuestion(java.lang.String reminderQueryQuestion) {
153                    _user.setReminderQueryQuestion(reminderQueryQuestion);
154            }
155    
156            public java.lang.String getReminderQueryAnswer() {
157                    return _user.getReminderQueryAnswer();
158            }
159    
160            public void setReminderQueryAnswer(java.lang.String reminderQueryAnswer) {
161                    _user.setReminderQueryAnswer(reminderQueryAnswer);
162            }
163    
164            public int getGraceLoginCount() {
165                    return _user.getGraceLoginCount();
166            }
167    
168            public void setGraceLoginCount(int graceLoginCount) {
169                    _user.setGraceLoginCount(graceLoginCount);
170            }
171    
172            public java.lang.String getScreenName() {
173                    return _user.getScreenName();
174            }
175    
176            public void setScreenName(java.lang.String screenName) {
177                    _user.setScreenName(screenName);
178            }
179    
180            public java.lang.String getEmailAddress() {
181                    return _user.getEmailAddress();
182            }
183    
184            public void setEmailAddress(java.lang.String emailAddress) {
185                    _user.setEmailAddress(emailAddress);
186            }
187    
188            public long getFacebookId() {
189                    return _user.getFacebookId();
190            }
191    
192            public void setFacebookId(long facebookId) {
193                    _user.setFacebookId(facebookId);
194            }
195    
196            public java.lang.String getOpenId() {
197                    return _user.getOpenId();
198            }
199    
200            public void setOpenId(java.lang.String openId) {
201                    _user.setOpenId(openId);
202            }
203    
204            public long getPortraitId() {
205                    return _user.getPortraitId();
206            }
207    
208            public void setPortraitId(long portraitId) {
209                    _user.setPortraitId(portraitId);
210            }
211    
212            public java.lang.String getLanguageId() {
213                    return _user.getLanguageId();
214            }
215    
216            public void setLanguageId(java.lang.String languageId) {
217                    _user.setLanguageId(languageId);
218            }
219    
220            public java.lang.String getTimeZoneId() {
221                    return _user.getTimeZoneId();
222            }
223    
224            public void setTimeZoneId(java.lang.String timeZoneId) {
225                    _user.setTimeZoneId(timeZoneId);
226            }
227    
228            public java.lang.String getGreeting() {
229                    return _user.getGreeting();
230            }
231    
232            public void setGreeting(java.lang.String greeting) {
233                    _user.setGreeting(greeting);
234            }
235    
236            public java.lang.String getComments() {
237                    return _user.getComments();
238            }
239    
240            public void setComments(java.lang.String comments) {
241                    _user.setComments(comments);
242            }
243    
244            public java.lang.String getFirstName() {
245                    return _user.getFirstName();
246            }
247    
248            public void setFirstName(java.lang.String firstName) {
249                    _user.setFirstName(firstName);
250            }
251    
252            public java.lang.String getMiddleName() {
253                    return _user.getMiddleName();
254            }
255    
256            public void setMiddleName(java.lang.String middleName) {
257                    _user.setMiddleName(middleName);
258            }
259    
260            public java.lang.String getLastName() {
261                    return _user.getLastName();
262            }
263    
264            public void setLastName(java.lang.String lastName) {
265                    _user.setLastName(lastName);
266            }
267    
268            public java.lang.String getJobTitle() {
269                    return _user.getJobTitle();
270            }
271    
272            public void setJobTitle(java.lang.String jobTitle) {
273                    _user.setJobTitle(jobTitle);
274            }
275    
276            public java.util.Date getLoginDate() {
277                    return _user.getLoginDate();
278            }
279    
280            public void setLoginDate(java.util.Date loginDate) {
281                    _user.setLoginDate(loginDate);
282            }
283    
284            public java.lang.String getLoginIP() {
285                    return _user.getLoginIP();
286            }
287    
288            public void setLoginIP(java.lang.String loginIP) {
289                    _user.setLoginIP(loginIP);
290            }
291    
292            public java.util.Date getLastLoginDate() {
293                    return _user.getLastLoginDate();
294            }
295    
296            public void setLastLoginDate(java.util.Date lastLoginDate) {
297                    _user.setLastLoginDate(lastLoginDate);
298            }
299    
300            public java.lang.String getLastLoginIP() {
301                    return _user.getLastLoginIP();
302            }
303    
304            public void setLastLoginIP(java.lang.String lastLoginIP) {
305                    _user.setLastLoginIP(lastLoginIP);
306            }
307    
308            public java.util.Date getLastFailedLoginDate() {
309                    return _user.getLastFailedLoginDate();
310            }
311    
312            public void setLastFailedLoginDate(java.util.Date lastFailedLoginDate) {
313                    _user.setLastFailedLoginDate(lastFailedLoginDate);
314            }
315    
316            public int getFailedLoginAttempts() {
317                    return _user.getFailedLoginAttempts();
318            }
319    
320            public void setFailedLoginAttempts(int failedLoginAttempts) {
321                    _user.setFailedLoginAttempts(failedLoginAttempts);
322            }
323    
324            public boolean getLockout() {
325                    return _user.getLockout();
326            }
327    
328            public boolean isLockout() {
329                    return _user.isLockout();
330            }
331    
332            public void setLockout(boolean lockout) {
333                    _user.setLockout(lockout);
334            }
335    
336            public java.util.Date getLockoutDate() {
337                    return _user.getLockoutDate();
338            }
339    
340            public void setLockoutDate(java.util.Date lockoutDate) {
341                    _user.setLockoutDate(lockoutDate);
342            }
343    
344            public boolean getAgreedToTermsOfUse() {
345                    return _user.getAgreedToTermsOfUse();
346            }
347    
348            public boolean isAgreedToTermsOfUse() {
349                    return _user.isAgreedToTermsOfUse();
350            }
351    
352            public void setAgreedToTermsOfUse(boolean agreedToTermsOfUse) {
353                    _user.setAgreedToTermsOfUse(agreedToTermsOfUse);
354            }
355    
356            public boolean getActive() {
357                    return _user.getActive();
358            }
359    
360            public boolean isActive() {
361                    return _user.isActive();
362            }
363    
364            public void setActive(boolean active) {
365                    _user.setActive(active);
366            }
367    
368            public com.liferay.portal.model.User toEscapedModel() {
369                    return _user.toEscapedModel();
370            }
371    
372            public boolean isNew() {
373                    return _user.isNew();
374            }
375    
376            public void setNew(boolean n) {
377                    _user.setNew(n);
378            }
379    
380            public boolean isCachedModel() {
381                    return _user.isCachedModel();
382            }
383    
384            public void setCachedModel(boolean cachedModel) {
385                    _user.setCachedModel(cachedModel);
386            }
387    
388            public boolean isEscapedModel() {
389                    return _user.isEscapedModel();
390            }
391    
392            public void setEscapedModel(boolean escapedModel) {
393                    _user.setEscapedModel(escapedModel);
394            }
395    
396            public java.io.Serializable getPrimaryKeyObj() {
397                    return _user.getPrimaryKeyObj();
398            }
399    
400            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
401                    return _user.getExpandoBridge();
402            }
403    
404            public void setExpandoBridgeAttributes(
405                    com.liferay.portal.service.ServiceContext serviceContext) {
406                    _user.setExpandoBridgeAttributes(serviceContext);
407            }
408    
409            public java.lang.Object clone() {
410                    return _user.clone();
411            }
412    
413            public int compareTo(com.liferay.portal.model.User user) {
414                    return _user.compareTo(user);
415            }
416    
417            public int hashCode() {
418                    return _user.hashCode();
419            }
420    
421            public java.lang.String toString() {
422                    return _user.toString();
423            }
424    
425            public java.lang.String toXmlString() {
426                    return _user.toXmlString();
427            }
428    
429            public java.util.Date getBirthday()
430                    throws com.liferay.portal.kernel.exception.PortalException,
431                            com.liferay.portal.kernel.exception.SystemException {
432                    return _user.getBirthday();
433            }
434    
435            public java.lang.String getCompanyMx()
436                    throws com.liferay.portal.kernel.exception.PortalException,
437                            com.liferay.portal.kernel.exception.SystemException {
438                    return _user.getCompanyMx();
439            }
440    
441            public com.liferay.portal.model.Contact getContact()
442                    throws com.liferay.portal.kernel.exception.PortalException,
443                            com.liferay.portal.kernel.exception.SystemException {
444                    return _user.getContact();
445            }
446    
447            public java.lang.String getDisplayEmailAddress() {
448                    return _user.getDisplayEmailAddress();
449            }
450    
451            public java.lang.String getDisplayURL(
452                    com.liferay.portal.theme.ThemeDisplay themeDisplay)
453                    throws com.liferay.portal.kernel.exception.PortalException,
454                            com.liferay.portal.kernel.exception.SystemException {
455                    return _user.getDisplayURL(themeDisplay);
456            }
457    
458            public java.lang.String getDisplayURL(java.lang.String portalURL,
459                    java.lang.String mainPath)
460                    throws com.liferay.portal.kernel.exception.PortalException,
461                            com.liferay.portal.kernel.exception.SystemException {
462                    return _user.getDisplayURL(portalURL, mainPath);
463            }
464    
465            public boolean getFemale()
466                    throws com.liferay.portal.kernel.exception.PortalException,
467                            com.liferay.portal.kernel.exception.SystemException {
468                    return _user.getFemale();
469            }
470    
471            public java.lang.String getFullName() {
472                    return _user.getFullName();
473            }
474    
475            public com.liferay.portal.model.Group getGroup()
476                    throws com.liferay.portal.kernel.exception.PortalException,
477                            com.liferay.portal.kernel.exception.SystemException {
478                    return _user.getGroup();
479            }
480    
481            public long[] getGroupIds()
482                    throws com.liferay.portal.kernel.exception.PortalException,
483                            com.liferay.portal.kernel.exception.SystemException {
484                    return _user.getGroupIds();
485            }
486    
487            public java.util.List<com.liferay.portal.model.Group> getGroups()
488                    throws com.liferay.portal.kernel.exception.PortalException,
489                            com.liferay.portal.kernel.exception.SystemException {
490                    return _user.getGroups();
491            }
492    
493            public java.util.Locale getLocale() {
494                    return _user.getLocale();
495            }
496    
497            public java.lang.String getLogin()
498                    throws com.liferay.portal.kernel.exception.PortalException,
499                            com.liferay.portal.kernel.exception.SystemException {
500                    return _user.getLogin();
501            }
502    
503            public boolean getMale()
504                    throws com.liferay.portal.kernel.exception.PortalException,
505                            com.liferay.portal.kernel.exception.SystemException {
506                    return _user.getMale();
507            }
508    
509            public java.util.List<com.liferay.portal.model.Group> getMyPlaces()
510                    throws com.liferay.portal.kernel.exception.PortalException,
511                            com.liferay.portal.kernel.exception.SystemException {
512                    return _user.getMyPlaces();
513            }
514    
515            public java.util.List<com.liferay.portal.model.Group> getMyPlaces(int max)
516                    throws com.liferay.portal.kernel.exception.PortalException,
517                            com.liferay.portal.kernel.exception.SystemException {
518                    return _user.getMyPlaces(max);
519            }
520    
521            public long[] getOrganizationIds()
522                    throws com.liferay.portal.kernel.exception.PortalException,
523                            com.liferay.portal.kernel.exception.SystemException {
524                    return _user.getOrganizationIds();
525            }
526    
527            public java.util.List<com.liferay.portal.model.Organization> getOrganizations()
528                    throws com.liferay.portal.kernel.exception.PortalException,
529                            com.liferay.portal.kernel.exception.SystemException {
530                    return _user.getOrganizations();
531            }
532    
533            public boolean getPasswordModified() {
534                    return _user.getPasswordModified();
535            }
536    
537            public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
538                    throws com.liferay.portal.kernel.exception.PortalException,
539                            com.liferay.portal.kernel.exception.SystemException {
540                    return _user.getPasswordPolicy();
541            }
542    
543            public java.lang.String getPasswordUnencrypted() {
544                    return _user.getPasswordUnencrypted();
545            }
546    
547            public int getPrivateLayoutsPageCount()
548                    throws com.liferay.portal.kernel.exception.PortalException,
549                            com.liferay.portal.kernel.exception.SystemException {
550                    return _user.getPrivateLayoutsPageCount();
551            }
552    
553            public int getPublicLayoutsPageCount()
554                    throws com.liferay.portal.kernel.exception.PortalException,
555                            com.liferay.portal.kernel.exception.SystemException {
556                    return _user.getPublicLayoutsPageCount();
557            }
558    
559            public java.util.Set<java.lang.String> getReminderQueryQuestions()
560                    throws com.liferay.portal.kernel.exception.PortalException,
561                            com.liferay.portal.kernel.exception.SystemException {
562                    return _user.getReminderQueryQuestions();
563            }
564    
565            public long[] getRoleIds()
566                    throws com.liferay.portal.kernel.exception.SystemException {
567                    return _user.getRoleIds();
568            }
569    
570            public java.util.List<com.liferay.portal.model.Role> getRoles()
571                    throws com.liferay.portal.kernel.exception.SystemException {
572                    return _user.getRoles();
573            }
574    
575            public double getSocialContributionEquity() {
576                    return _user.getSocialContributionEquity();
577            }
578    
579            public double getSocialParticipationEquity() {
580                    return _user.getSocialParticipationEquity();
581            }
582    
583            public double getSocialPersonalEquity() {
584                    return _user.getSocialPersonalEquity();
585            }
586    
587            public long[] getTeamIds()
588                    throws com.liferay.portal.kernel.exception.SystemException {
589                    return _user.getTeamIds();
590            }
591    
592            public java.util.List<com.liferay.portal.model.Team> getTeams()
593                    throws com.liferay.portal.kernel.exception.SystemException {
594                    return _user.getTeams();
595            }
596    
597            public long[] getUserGroupIds()
598                    throws com.liferay.portal.kernel.exception.SystemException {
599                    return _user.getUserGroupIds();
600            }
601    
602            public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups()
603                    throws com.liferay.portal.kernel.exception.SystemException {
604                    return _user.getUserGroups();
605            }
606    
607            public java.util.TimeZone getTimeZone() {
608                    return _user.getTimeZone();
609            }
610    
611            public boolean hasCompanyMx()
612                    throws com.liferay.portal.kernel.exception.PortalException,
613                            com.liferay.portal.kernel.exception.SystemException {
614                    return _user.hasCompanyMx();
615            }
616    
617            public boolean hasCompanyMx(java.lang.String emailAddress)
618                    throws com.liferay.portal.kernel.exception.PortalException,
619                            com.liferay.portal.kernel.exception.SystemException {
620                    return _user.hasCompanyMx(emailAddress);
621            }
622    
623            public boolean hasMyPlaces()
624                    throws com.liferay.portal.kernel.exception.SystemException {
625                    return _user.hasMyPlaces();
626            }
627    
628            public boolean hasOrganization()
629                    throws com.liferay.portal.kernel.exception.PortalException,
630                            com.liferay.portal.kernel.exception.SystemException {
631                    return _user.hasOrganization();
632            }
633    
634            public boolean hasPrivateLayouts()
635                    throws com.liferay.portal.kernel.exception.PortalException,
636                            com.liferay.portal.kernel.exception.SystemException {
637                    return _user.hasPrivateLayouts();
638            }
639    
640            public boolean hasPublicLayouts()
641                    throws com.liferay.portal.kernel.exception.PortalException,
642                            com.liferay.portal.kernel.exception.SystemException {
643                    return _user.hasPublicLayouts();
644            }
645    
646            public boolean hasReminderQuery() {
647                    return _user.hasReminderQuery();
648            }
649    
650            public boolean isFemale()
651                    throws com.liferay.portal.kernel.exception.PortalException,
652                            com.liferay.portal.kernel.exception.SystemException {
653                    return _user.isFemale();
654            }
655    
656            public boolean isMale()
657                    throws com.liferay.portal.kernel.exception.PortalException,
658                            com.liferay.portal.kernel.exception.SystemException {
659                    return _user.isMale();
660            }
661    
662            public boolean isPasswordModified() {
663                    return _user.isPasswordModified();
664            }
665    
666            public void setPasswordModified(boolean passwordModified) {
667                    _user.setPasswordModified(passwordModified);
668            }
669    
670            public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
671                    _user.setPasswordUnencrypted(passwordUnencrypted);
672            }
673    
674            public void updateSocialContributionEquity(double value) {
675                    _user.updateSocialContributionEquity(value);
676            }
677    
678            public void updateSocialParticipationEquity(double value) {
679                    _user.updateSocialParticipationEquity(value);
680            }
681    
682            public User getWrappedUser() {
683                    return _user;
684            }
685    
686            private User _user;
687    }