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