1
14
15 package com.liferay.portal.model;
16
17
18
34 public class UserWrapper implements User {
35 public UserWrapper(User user) {
36 _user = user;
37 }
38
39 public long getPrimaryKey() {
40 return _user.getPrimaryKey();
41 }
42
43 public void setPrimaryKey(long pk) {
44 _user.setPrimaryKey(pk);
45 }
46
47 public java.lang.String getUuid() {
48 return _user.getUuid();
49 }
50
51 public void setUuid(java.lang.String uuid) {
52 _user.setUuid(uuid);
53 }
54
55 public long getUserId() {
56 return _user.getUserId();
57 }
58
59 public void setUserId(long userId) {
60 _user.setUserId(userId);
61 }
62
63 public java.lang.String getUserUuid()
64 throws com.liferay.portal.kernel.exception.SystemException {
65 return _user.getUserUuid();
66 }
67
68 public void setUserUuid(java.lang.String userUuid) {
69 _user.setUserUuid(userUuid);
70 }
71
72 public long getCompanyId() {
73 return _user.getCompanyId();
74 }
75
76 public void setCompanyId(long companyId) {
77 _user.setCompanyId(companyId);
78 }
79
80 public java.util.Date getCreateDate() {
81 return _user.getCreateDate();
82 }
83
84 public void setCreateDate(java.util.Date createDate) {
85 _user.setCreateDate(createDate);
86 }
87
88 public java.util.Date getModifiedDate() {
89 return _user.getModifiedDate();
90 }
91
92 public void setModifiedDate(java.util.Date modifiedDate) {
93 _user.setModifiedDate(modifiedDate);
94 }
95
96 public boolean getDefaultUser() {
97 return _user.getDefaultUser();
98 }
99
100 public boolean isDefaultUser() {
101 return _user.isDefaultUser();
102 }
103
104 public void setDefaultUser(boolean defaultUser) {
105 _user.setDefaultUser(defaultUser);
106 }
107
108 public long getContactId() {
109 return _user.getContactId();
110 }
111
112 public void setContactId(long contactId) {
113 _user.setContactId(contactId);
114 }
115
116 public java.lang.String getPassword() {
117 return _user.getPassword();
118 }
119
120 public void setPassword(java.lang.String password) {
121 _user.setPassword(password);
122 }
123
124 public boolean getPasswordEncrypted() {
125 return _user.getPasswordEncrypted();
126 }
127
128 public boolean isPasswordEncrypted() {
129 return _user.isPasswordEncrypted();
130 }
131
132 public void setPasswordEncrypted(boolean passwordEncrypted) {
133 _user.setPasswordEncrypted(passwordEncrypted);
134 }
135
136 public boolean getPasswordReset() {
137 return _user.getPasswordReset();
138 }
139
140 public boolean isPasswordReset() {
141 return _user.isPasswordReset();
142 }
143
144 public void setPasswordReset(boolean passwordReset) {
145 _user.setPasswordReset(passwordReset);
146 }
147
148 public java.util.Date getPasswordModifiedDate() {
149 return _user.getPasswordModifiedDate();
150 }
151
152 public void setPasswordModifiedDate(java.util.Date passwordModifiedDate) {
153 _user.setPasswordModifiedDate(passwordModifiedDate);
154 }
155
156 public java.lang.String getReminderQueryQuestion() {
157 return _user.getReminderQueryQuestion();
158 }
159
160 public void setReminderQueryQuestion(java.lang.String reminderQueryQuestion) {
161 _user.setReminderQueryQuestion(reminderQueryQuestion);
162 }
163
164 public java.lang.String getReminderQueryAnswer() {
165 return _user.getReminderQueryAnswer();
166 }
167
168 public void setReminderQueryAnswer(java.lang.String reminderQueryAnswer) {
169 _user.setReminderQueryAnswer(reminderQueryAnswer);
170 }
171
172 public int getGraceLoginCount() {
173 return _user.getGraceLoginCount();
174 }
175
176 public void setGraceLoginCount(int graceLoginCount) {
177 _user.setGraceLoginCount(graceLoginCount);
178 }
179
180 public java.lang.String getScreenName() {
181 return _user.getScreenName();
182 }
183
184 public void setScreenName(java.lang.String screenName) {
185 _user.setScreenName(screenName);
186 }
187
188 public java.lang.String getEmailAddress() {
189 return _user.getEmailAddress();
190 }
191
192 public void setEmailAddress(java.lang.String emailAddress) {
193 _user.setEmailAddress(emailAddress);
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 double getSocialContributionEquity() {
369 return _user.getSocialContributionEquity();
370 }
371
372 public void setSocialContributionEquity(double socialContributionEquity) {
373 _user.setSocialContributionEquity(socialContributionEquity);
374 }
375
376 public double getSocialParticipationEquity() {
377 return _user.getSocialParticipationEquity();
378 }
379
380 public void setSocialParticipationEquity(double socialParticipationEquity) {
381 _user.setSocialParticipationEquity(socialParticipationEquity);
382 }
383
384 public double getSocialPersonalEquity() {
385 return _user.getSocialPersonalEquity();
386 }
387
388 public void setSocialPersonalEquity(double socialPersonalEquity) {
389 _user.setSocialPersonalEquity(socialPersonalEquity);
390 }
391
392 public com.liferay.portal.model.User toEscapedModel() {
393 return _user.toEscapedModel();
394 }
395
396 public boolean isNew() {
397 return _user.isNew();
398 }
399
400 public boolean setNew(boolean n) {
401 return _user.setNew(n);
402 }
403
404 public boolean isCachedModel() {
405 return _user.isCachedModel();
406 }
407
408 public void setCachedModel(boolean cachedModel) {
409 _user.setCachedModel(cachedModel);
410 }
411
412 public boolean isEscapedModel() {
413 return _user.isEscapedModel();
414 }
415
416 public void setEscapedModel(boolean escapedModel) {
417 _user.setEscapedModel(escapedModel);
418 }
419
420 public java.io.Serializable getPrimaryKeyObj() {
421 return _user.getPrimaryKeyObj();
422 }
423
424 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
425 return _user.getExpandoBridge();
426 }
427
428 public void setExpandoBridgeAttributes(
429 com.liferay.portal.service.ServiceContext serviceContext) {
430 _user.setExpandoBridgeAttributes(serviceContext);
431 }
432
433 public java.lang.Object clone() {
434 return _user.clone();
435 }
436
437 public int compareTo(com.liferay.portal.model.User user) {
438 return _user.compareTo(user);
439 }
440
441 public int hashCode() {
442 return _user.hashCode();
443 }
444
445 public java.lang.String toString() {
446 return _user.toString();
447 }
448
449 public java.lang.String toXmlString() {
450 return _user.toXmlString();
451 }
452
453 public java.util.Date getBirthday()
454 throws com.liferay.portal.kernel.exception.PortalException,
455 com.liferay.portal.kernel.exception.SystemException {
456 return _user.getBirthday();
457 }
458
459 public java.lang.String getCompanyMx()
460 throws com.liferay.portal.kernel.exception.PortalException,
461 com.liferay.portal.kernel.exception.SystemException {
462 return _user.getCompanyMx();
463 }
464
465 public com.liferay.portal.model.Contact getContact()
466 throws com.liferay.portal.kernel.exception.PortalException,
467 com.liferay.portal.kernel.exception.SystemException {
468 return _user.getContact();
469 }
470
471 public java.lang.String getDisplayEmailAddress() {
472 return _user.getDisplayEmailAddress();
473 }
474
475 public java.lang.String getDisplayURL(
476 com.liferay.portal.theme.ThemeDisplay themeDisplay)
477 throws com.liferay.portal.kernel.exception.PortalException,
478 com.liferay.portal.kernel.exception.SystemException {
479 return _user.getDisplayURL(themeDisplay);
480 }
481
482 public java.lang.String getDisplayURL(java.lang.String portalURL,
483 java.lang.String mainPath)
484 throws com.liferay.portal.kernel.exception.PortalException,
485 com.liferay.portal.kernel.exception.SystemException {
486 return _user.getDisplayURL(portalURL, mainPath);
487 }
488
489 public boolean getFemale()
490 throws com.liferay.portal.kernel.exception.PortalException,
491 com.liferay.portal.kernel.exception.SystemException {
492 return _user.getFemale();
493 }
494
495 public java.lang.String getFullName() {
496 return _user.getFullName();
497 }
498
499 public com.liferay.portal.model.Group getGroup()
500 throws com.liferay.portal.kernel.exception.PortalException,
501 com.liferay.portal.kernel.exception.SystemException {
502 return _user.getGroup();
503 }
504
505 public long[] getGroupIds()
506 throws com.liferay.portal.kernel.exception.PortalException,
507 com.liferay.portal.kernel.exception.SystemException {
508 return _user.getGroupIds();
509 }
510
511 public java.util.List<com.liferay.portal.model.Group> getGroups()
512 throws com.liferay.portal.kernel.exception.PortalException,
513 com.liferay.portal.kernel.exception.SystemException {
514 return _user.getGroups();
515 }
516
517 public java.util.Locale getLocale() {
518 return _user.getLocale();
519 }
520
521 public java.lang.String getLogin()
522 throws com.liferay.portal.kernel.exception.PortalException,
523 com.liferay.portal.kernel.exception.SystemException {
524 return _user.getLogin();
525 }
526
527 public boolean getMale()
528 throws com.liferay.portal.kernel.exception.PortalException,
529 com.liferay.portal.kernel.exception.SystemException {
530 return _user.getMale();
531 }
532
533 public java.util.List<com.liferay.portal.model.Group> getMyPlaces()
534 throws com.liferay.portal.kernel.exception.PortalException,
535 com.liferay.portal.kernel.exception.SystemException {
536 return _user.getMyPlaces();
537 }
538
539 public java.util.List<com.liferay.portal.model.Group> getMyPlaces(int max)
540 throws com.liferay.portal.kernel.exception.PortalException,
541 com.liferay.portal.kernel.exception.SystemException {
542 return _user.getMyPlaces(max);
543 }
544
545 public long[] getOrganizationIds()
546 throws com.liferay.portal.kernel.exception.PortalException,
547 com.liferay.portal.kernel.exception.SystemException {
548 return _user.getOrganizationIds();
549 }
550
551 public java.util.List<com.liferay.portal.model.Organization> getOrganizations()
552 throws com.liferay.portal.kernel.exception.PortalException,
553 com.liferay.portal.kernel.exception.SystemException {
554 return _user.getOrganizations();
555 }
556
557 public boolean getPasswordModified() {
558 return _user.getPasswordModified();
559 }
560
561 public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
562 throws com.liferay.portal.kernel.exception.PortalException,
563 com.liferay.portal.kernel.exception.SystemException {
564 return _user.getPasswordPolicy();
565 }
566
567 public java.lang.String getPasswordUnencrypted() {
568 return _user.getPasswordUnencrypted();
569 }
570
571 public int getPrivateLayoutsPageCount()
572 throws com.liferay.portal.kernel.exception.PortalException,
573 com.liferay.portal.kernel.exception.SystemException {
574 return _user.getPrivateLayoutsPageCount();
575 }
576
577 public int getPublicLayoutsPageCount()
578 throws com.liferay.portal.kernel.exception.PortalException,
579 com.liferay.portal.kernel.exception.SystemException {
580 return _user.getPublicLayoutsPageCount();
581 }
582
583 public java.util.Set<java.lang.String> getReminderQueryQuestions()
584 throws com.liferay.portal.kernel.exception.PortalException,
585 com.liferay.portal.kernel.exception.SystemException {
586 return _user.getReminderQueryQuestions();
587 }
588
589 public long[] getRoleIds()
590 throws com.liferay.portal.kernel.exception.SystemException {
591 return _user.getRoleIds();
592 }
593
594 public java.util.List<com.liferay.portal.model.Role> getRoles()
595 throws com.liferay.portal.kernel.exception.SystemException {
596 return _user.getRoles();
597 }
598
599 public long[] getTeamIds()
600 throws com.liferay.portal.kernel.exception.SystemException {
601 return _user.getTeamIds();
602 }
603
604 public java.util.List<com.liferay.portal.model.Team> getTeams()
605 throws com.liferay.portal.kernel.exception.SystemException {
606 return _user.getTeams();
607 }
608
609 public long[] getUserGroupIds()
610 throws com.liferay.portal.kernel.exception.SystemException {
611 return _user.getUserGroupIds();
612 }
613
614 public java.util.List<com.liferay.portal.model.UserGroup> getUserGroups()
615 throws com.liferay.portal.kernel.exception.SystemException {
616 return _user.getUserGroups();
617 }
618
619 public java.util.TimeZone getTimeZone() {
620 return _user.getTimeZone();
621 }
622
623 public boolean hasCompanyMx()
624 throws com.liferay.portal.kernel.exception.PortalException,
625 com.liferay.portal.kernel.exception.SystemException {
626 return _user.hasCompanyMx();
627 }
628
629 public boolean hasCompanyMx(java.lang.String emailAddress)
630 throws com.liferay.portal.kernel.exception.PortalException,
631 com.liferay.portal.kernel.exception.SystemException {
632 return _user.hasCompanyMx(emailAddress);
633 }
634
635 public boolean hasMyPlaces()
636 throws com.liferay.portal.kernel.exception.SystemException {
637 return _user.hasMyPlaces();
638 }
639
640 public boolean hasOrganization()
641 throws com.liferay.portal.kernel.exception.PortalException,
642 com.liferay.portal.kernel.exception.SystemException {
643 return _user.hasOrganization();
644 }
645
646 public boolean hasPrivateLayouts()
647 throws com.liferay.portal.kernel.exception.PortalException,
648 com.liferay.portal.kernel.exception.SystemException {
649 return _user.hasPrivateLayouts();
650 }
651
652 public boolean hasPublicLayouts()
653 throws com.liferay.portal.kernel.exception.PortalException,
654 com.liferay.portal.kernel.exception.SystemException {
655 return _user.hasPublicLayouts();
656 }
657
658 public boolean hasReminderQuery() {
659 return _user.hasReminderQuery();
660 }
661
662 public boolean isFemale()
663 throws com.liferay.portal.kernel.exception.PortalException,
664 com.liferay.portal.kernel.exception.SystemException {
665 return _user.isFemale();
666 }
667
668 public boolean isMale()
669 throws com.liferay.portal.kernel.exception.PortalException,
670 com.liferay.portal.kernel.exception.SystemException {
671 return _user.isMale();
672 }
673
674 public boolean isPasswordModified() {
675 return _user.isPasswordModified();
676 }
677
678 public void setPasswordModified(boolean passwordModified) {
679 _user.setPasswordModified(passwordModified);
680 }
681
682 public void setPasswordUnencrypted(java.lang.String passwordUnencrypted) {
683 _user.setPasswordUnencrypted(passwordUnencrypted);
684 }
685
686 public User getWrappedUser() {
687 return _user;
688 }
689
690 private User _user;
691 }