1
22
23 package com.liferay.portal.model;
24
25
26
51 public interface User extends UserModel {
52 public java.lang.String getCompanyMx();
53
54 public boolean hasCompanyMx();
55
56 public boolean hasCompanyMx(java.lang.String emailAddress);
57
58 public java.lang.String getLogin()
59 throws com.liferay.portal.PortalException,
60 com.liferay.portal.SystemException;
61
62 public com.liferay.portal.model.PasswordPolicy getPasswordPolicy()
63 throws com.liferay.portal.PortalException,
64 com.liferay.portal.SystemException;
65
66 public java.lang.String getPasswordUnencrypted();
67
68 public void setPasswordUnencrypted(java.lang.String passwordUnencrypted);
69
70 public boolean getPasswordModified();
71
72 public boolean isPasswordModified();
73
74 public void setPasswordModified(boolean passwordModified);
75
76 public java.util.Locale getLocale();
77
78 public void setLanguageId(java.lang.String languageId);
79
80 public java.util.TimeZone getTimeZone();
81
82 public void setTimeZoneId(java.lang.String timeZoneId);
83
84 public com.liferay.portal.model.Contact getContact();
85
86 public java.lang.String getFullName();
87
88 public boolean getMale();
89
90 public boolean isMale();
91
92 public boolean getFemale();
93
94 public boolean isFemale();
95
96 public java.util.Date getBirthday();
97
98 public com.liferay.portal.model.Group getGroup();
99
100 public com.liferay.portal.model.Organization getOrganization();
101
102 public long[] getOrganizationIds();
103
104 public java.util.List<com.liferay.portal.model.Organization> getOrganizations();
105
106 public boolean hasOrganization();
107
108 public com.liferay.portal.model.Organization getLocation();
109
110 public long getLocationId();
111
112 public boolean hasLocation();
113
114 public int getPrivateLayoutsPageCount();
115
116 public boolean hasPrivateLayouts();
117
118 public int getPublicLayoutsPageCount();
119
120 public boolean hasPublicLayouts();
121
122 public java.util.List<com.liferay.portal.model.Group> getMyPlaces();
123
124 public java.util.List<com.liferay.portal.model.Group> getMyPlaces(int max);
125
126 public boolean hasMyPlaces();
127
128 public java.lang.String getDisplayURL(
129 com.liferay.portal.theme.ThemeDisplay themeDisplay);
130
131 public java.lang.String getDisplayURL(java.lang.String portalURL,
132 java.lang.String mainPath);
133 }