1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portal.model;
16  
17  /**
18   * <a href="UserSoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link User}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       User
31   * @generated
32   */
33  public class UserWrapper implements User {
34      public UserWrapper(User user) {
35          _user = user;
36      }
37  
38      public long getPrimaryKey() {
39          return _user.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _user.setPrimaryKey(pk);
44      }
45  
46      public java.lang.String getUuid() {
47          return _user.getUuid();
48      }
49  
50      public void setUuid(java.lang.String uuid) {
51          _user.setUuid(uuid);
52      }
53  
54      public long getUserId() {
55          return _user.getUserId();
56      }
57  
58      public void setUserId(long userId) {
59          _user.setUserId(userId);
60      }
61  
62      public java.lang.String getUserUuid()
63          throws com.liferay.portal.SystemException {
64          return _user.getUserUuid();
65      }
66  
67      public void setUserUuid(java.lang.String userUuid) {
68          _user.setUserUuid(userUuid);
69      }
70  
71      public long getCompanyId() {
72          return _user.getCompanyId();
73      }
74  
75      public void setCompanyId(long companyId) {
76          _user.setCompanyId(companyId);
77      }
78  
79      public java.util.Date getCreateDate() {
80          return _user.getCreateDate();
81      }
82  
83      public void setCreateDate(java.util.Date createDate) {
84          _user.setCreateDate(createDate);
85      }
86  
87      public java.util.Date getModifiedDate() {
88          return _user.getModifiedDate();
89      }
90  
91      public void setModifiedDate(java.util.Date modifiedDate) {
92          _user.setModifiedDate(modifiedDate);
93      }
94  
95      public boolean getDefaultUser() {
96          return _user.getDefaultUser();
97      }
98  
99      public boolean isDefaultUser() {
100         return _user.isDefaultUser();
101     }
102 
103     public void setDefaultUser(boolean defaultUser) {
104         _user.setDefaultUser(defaultUser);
105     }
106 
107     public long getContactId() {
108         return _user.getContactId();
109     }
110 
111     public void setContactId(long contactId) {
112         _user.setContactId(contactId);
113     }
114 
115     public java.lang.String getPassword() {
116         return _user.getPassword();
117     }
118 
119     public void setPassword(java.lang.String password) {
120         _user.setPassword(password);
121     }
122 
123     public boolean getPasswordEncrypted() {
124         return _user.getPasswordEncrypted();
125     }
126 
127     public boolean isPasswordEncrypted() {
128         return _user.isPasswordEncrypted();
129     }
130 
131     public void setPasswordEncrypted(boolean passwordEncrypted) {
132         _user.setPasswordEncrypted(passwordEncrypted);
133     }
134 
135     public boolean getPasswordReset() {
136         return _user.getPasswordReset();
137     }
138 
139     public boolean isPasswordReset() {
140         return _user.isPasswordReset();
141     }
142 
143     public void setPasswordReset(boolean passwordReset) {
144         _user.setPasswordReset(passwordReset);
145     }
146 
147     public java.util.Date getPasswordModifiedDate() {
148         return _user.getPasswordModifiedDate();
149     }
150 
151     public void setPasswordModifiedDate(java.util.Date passwordModifiedDate) {
152         _user.setPasswordModifiedDate(passwordModifiedDate);
153     }
154 
155     public java.lang.String getReminderQueryQuestion() {
156         return _user.getReminderQueryQuestion();
157     }
158 
159     public void setReminderQueryQuestion(java.lang.String reminderQueryQuestion) {
160         _user.setReminderQueryQuestion(reminderQueryQuestion);
161     }
162 
163     public java.lang.String getReminderQueryAnswer() {
164         return _user.getReminderQueryAnswer();
165     }
166 
167     public void setReminderQueryAnswer(java.lang.String reminderQueryAnswer) {
168         _user.setReminderQueryAnswer(reminderQueryAnswer);
169     }
170 
171     public int getGraceLoginCount() {
172         return _user.getGraceLoginCount();
173     }
174 
175     public void setGraceLoginCount(int graceLoginCount) {
176         _user.setGraceLoginCount(graceLoginCount);
177     }
178 
179     public java.lang.String getScreenName() {
180         return _user.getScreenName();
181     }
182 
183     public void setScreenName(java.lang.String screenName) {
184         _user.setScreenName(screenName);
185     }
186 
187     public java.lang.String getEmailAddress() {
188         return _user.getEmailAddress();
189     }
190 
191     public void setEmailAddress(java.lang.String emailAddress) {
192         _user.setEmailAddress(emailAddress);
193     }
194 
195     public java.lang.String getOpenId() {
196         return _user.getOpenId();
197     }
198 
199     public void setOpenId(java.lang.String openId) {
200         _user.setOpenId(openId);
201     }
202 
203     public long getPortraitId() {
204         return _user.getPortraitId();
205     }
206 
207     public void setPortraitId(long portraitId) {
208         _user.setPortraitId(portraitId);
209     }
210 
211     public java.lang.String getLanguageId() {
212         return _user.getLanguageId();
213     }
214 
215     public void setLanguageId(java.lang.String languageId) {
216         _user.setLanguageId(languageId);
217     }
218 
219     public java.lang.String getTimeZoneId() {
220         return _user.getTimeZoneId();
221     }
222 
223     public void setTimeZoneId(java.lang.String timeZoneId) {
224         _user.setTimeZoneId(timeZoneId);
225     }
226 
227     public java.lang.String getGreeting() {
228         return _user.getGreeting();
229     }
230 
231     public void setGreeting(java.lang.String greeting) {
232         _user.setGreeting(greeting);
233     }
234 
235     public java.lang.String getComments() {
236         return _user.getComments();
237     }
238 
239     public void setComments(java.lang.String comments) {
240         _user.setComments(comments);
241     }
242 
243     public java.lang.String getFirstName() {
244         return _user.getFirstName();
245     }
246 
247     public void setFirstName(java.lang.String firstName) {
248         _user.setFirstName(firstName);
249     }
250 
251     public java.lang.String getMiddleName() {
252         return _user.getMiddleName();
253     }
254 
255     public void setMiddleName(java.lang.String middleName) {
256         _user.setMiddleName(middleName);
257     }
258 
259     public java.lang.String getLastName() {
260         return _user.getLastName();
261     }
262 
263     public void setLastName(java.lang.String lastName) {
264         _user.setLastName(lastName);
265     }
266 
267     public java.lang.String getJobTitle() {
268         return _user.getJobTitle();
269     }
270 
271     public void setJobTitle(java.lang.String jobTitle) {
272         _user.setJobTitle(jobTitle);
273     }
274 
275     public java.util.Date getLoginDate() {
276         return _user.getLoginDate();
277     }
278 
279     public void setLoginDate(java.util.Date loginDate) {
280         _user.setLoginDate(loginDate);
281     }
282 
283     public java.lang.String getLoginIP() {
284         return _user.getLoginIP();
285     }
286 
287     public void setLoginIP(java.lang.String loginIP) {
288         _user.setLoginIP(loginIP);
289     }
290 
291     public java.util.Date getLastLoginDate() {
292         return _user.getLastLoginDate();
293     }
294 
295     public void setLastLoginDate(java.util.Date lastLoginDate) {
296         _user.setLastLoginDate(lastLoginDate);
297     }
298 
299     public java.lang.String getLastLoginIP() {
300         return _user.getLastLoginIP();
301     }
302 
303     public void setLastLoginIP(java.lang.String lastLoginIP) {
304         _user.setLastLoginIP(lastLoginIP);
305     }
306 
307     public java.util.Date getLastFailedLoginDate() {
308         return _user.getLastFailedLoginDate();
309     }
310 
311     public void setLastFailedLoginDate(java.util.Date lastFailedLoginDate) {
312         _user.setLastFailedLoginDate(lastFailedLoginDate);
313     }
314 
315     public int getFailedLoginAttempts() {
316         return _user.getFailedLoginAttempts();
317     }
318 
319     public void setFailedLoginAttempts(int failedLoginAttempts) {
320         _user.setFailedLoginAttempts(failedLoginAttempts);
321     }
322 
323     public boolean getLockout() {
324         return _user.getLockout();
325     }
326 
327     public boolean isLockout() {
328         return _user.isLockout();
329     }
330 
331     public void setLockout(boolean lockout) {
332         _user.setLockout(lockout);
333     }
334 
335     public java.util.Date getLockoutDate() {
336         return _user.getLockoutDate();
337     }
338 
339     public void setLockoutDate(java.util.Date lockoutDate) {
340         _user.setLockoutDate(lockoutDate);
341     }
342 
343     public boolean getAgreedToTermsOfUse() {
344         return _user.getAgreedToTermsOfUse();
345     }
346 
347     public boolean isAgreedToTermsOfUse() {
348         return _user.isAgreedToTermsOfUse();
349     }
350 
351     public void setAgreedToTermsOfUse(boolean agreedToTermsOfUse) {
352         _user.setAgreedToTermsOfUse(agreedToTermsOfUse);
353     }
354 
355     public boolean getActive() {
356         return _user.getActive();
357     }
358 
359     public boolean isActive() {
360         return _user.isActive();
361     }
362 
363     public void setActive(boolean active) {
364         _user.setActive(active);
365     }
366 
367     public boolean isNew() {
368         return _user.isNew();
369     }
370 
371     public boolean setNew(boolean n) {
372         return _user.setNew(n);
373     }
374 
375     public boolean isCachedModel() {
376         return _user.isCachedModel();
377     }
378 
379     public void setCachedModel(boolean cachedModel) {
380         _user.setCachedModel(cachedModel);
381     }
382 
383     public boolean isEscapedModel() {
384         return _user.isEscapedModel();
385     }
386 
387     public void setEscapedModel(boolean escapedModel) {
388         _user.setEscapedModel(escapedModel);
389     }
390 
391     public java.io.Serializable getPrimaryKeyObj() {
392         return _user.getPrimaryKeyObj();
393     }
394 
395     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
396         return _user.getExpandoBridge();
397     }
398 
399     public void setExpandoBridgeAttributes(
400         com.liferay.portal.service.ServiceContext serviceContext) {
401         _user.setExpandoBridgeAttributes(serviceContext);
402     }
403 
404     public java.lang.Object clone() {
405         return _user.clone();
406     }
407 
408     public int compareTo(com.liferay.portal.model.User user) {
409         return _user.compareTo(user);
410     }
411 
412     public int hashCode() {
413         return _user.hashCode();
414     }
415 
416     public com.liferay.portal.model.User toEscapedModel() {
417         return _user.toEscapedModel();
418     }
419 
420     public java.lang.String toString() {
421         return _user.toString();
422     }
423 
424     public java.lang.String toXmlString() {
425         return _user.toXmlString();
426     }
427 
428     public java.util.Date getBirthday() {
429         return _user.getBirthday();
430     }
431 
432     public java.lang.String getCompanyMx() {
433         return _user.getCompanyMx();
434     }
435 
436     public com.liferay.portal.model.Contact getContact() {
437         return _user.getContact();
438     }
439 
440     public java.lang.String getDisplayEmailAddress() {
441         return _user.getDisplayEmailAddress();
442     }
443 
444     public java.lang.String getDisplayURL(
445         com.liferay.portal.theme.ThemeDisplay themeDisplay) {
446         return _user.getDisplayURL(themeDisplay);
447     }
448 
449     public java.lang.String getDisplayURL(java.lang.String portalURL,
450         java.lang.String mainPath) {
451         return _user.getDisplayURL(portalURL, mainPath);
452     }
453 
454     public boolean getFemale() {
455         return _user.getFemale();
456     }
457 
458     public java.lang.String getFullName() {
459         return _user.getFullName();
460     }
461 
462     public com.liferay.portal.model.Group getGroup() {
463         return _user.getGroup();
464     }
465 
466     public long[] getGroupIds() {
467         return _user.getGroupIds();
468     }
469 
470     public java.util.List<com.liferay.portal.model.Group> getGroups() {
471         return _user.getGroups();
472     }
473 
474     public java.util.Locale getLocale() {
475         return _user.getLocale();
476     }
477 
478     public java.lang.String getLogin()
479         throws com.liferay.portal.PortalException,
480             com.liferay.portal.SystemException {
481         return _user.getLogin();
482     }
483 
484     public boolean getMale() {
485         return _user.getMale();
486     }
487 
488     public java.util.List<com.liferay.portal.model.Group> getMyPlaces()
489         throws com.liferay.portal.PortalException,
490             com.liferay.portal.SystemException {
491         return _user.getMyPlaces();
492     }
493 
494     public java.util.List<com.liferay.portal.model.Group> getMyPlaces(int max)
495         throws com.liferay.portal.PortalException,
496             com.liferay.portal.SystemException {
497         return _user.getMyPlaces(max);
498     }
499 
500     public java.util.List<com.liferay.portal.model.Group> getMyPlaces(
501         java.lang.String[] classNames, int max)
502         throws com.liferay.portal.PortalException,
503             com.liferay.portal.SystemException {
504         return _user.getMyPlaces(classNames, max);
505     }
506 
507     public long[] getOrganizationIds() {
508         return _user.getOrganizationIds();
509     }
510 
511     public java.util.List<com.liferay.portal.model.Organization> getOrganizations() {
512         return _user.getOrganizations();
513     }
514 
515     public boolean getPasswordModified() {
516         return _user.getPasswordModified();
517     }
518 
519     public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
520         throws com.liferay.portal.PortalException,
521             com.liferay.portal.SystemException {
522         return _user.getPasswordPolicy();
523     }
524 
525     public java.lang.String getPasswordUnencrypted() {
526         return _user.getPasswordUnencrypted();
527     }
528 
529     public int getPrivateLayoutsPageCount() {
530         return _user.getPrivateLayoutsPageCount();
531     }
532 
533     public int getPublicLayoutsPageCount() {
534         return _user.getPublicLayoutsPageCount();
535     }
536 
537     public java.util.Set<java.lang.String> getReminderQueryQuestions()
538         throws com.liferay.portal.PortalException,
539             com.liferay.portal.SystemException {
540         return _user.getReminderQueryQuestions();
541     }
542 
543     public long[] getRoleIds() {
544         return _user.getRoleIds();
545     }
546 
547     public java.util.List<com.liferay.portal.model.Role> getRoles() {
548         return _user.getRoles();
549     }
550 
551     public long[] getUserGroupIds() {
552         return _user.getUserGroupIds();
553     }
554 
555     public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups() {
556         return _user.getUserGroups();
557     }
558 
559     public java.util.TimeZone getTimeZone() {
560         return _user.getTimeZone();
561     }
562 
563     public boolean hasCompanyMx() {
564         return _user.hasCompanyMx();
565     }
566 
567     public boolean hasCompanyMx(java.lang.String emailAddress) {
568         return _user.hasCompanyMx(emailAddress);
569     }
570 
571     public boolean hasMyPlaces() {
572         return _user.hasMyPlaces();
573     }
574 
575     public boolean hasOrganization() {
576         return _user.hasOrganization();
577     }
578 
579     public boolean hasPrivateLayouts() {
580         return _user.hasPrivateLayouts();
581     }
582 
583     public boolean hasPublicLayouts() {
584         return _user.hasPublicLayouts();
585     }
586 
587     public boolean isFemale() {
588         return _user.isFemale();
589     }
590 
591     public boolean isMale() {
592         return _user.isMale();
593     }
594 
595     public boolean isPasswordModified() {
596         return _user.isPasswordModified();
597     }
598 
599     public void setPasswordModified(boolean passwordModified) {
600         _user.setPasswordModified(passwordModified);
601     }
602 
603     public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
604         _user.setPasswordUnencrypted(passwordUnencrypted);
605     }
606 
607     public User getWrappedUser() {
608         return _user;
609     }
610 
611     private User _user;
612 }