001
014
015 package com.liferay.portal.model;
016
017
026 public class TeamWrapper implements Team {
027 public TeamWrapper(Team team) {
028 _team = team;
029 }
030
031 public Class<?> getModelClass() {
032 return Team.class;
033 }
034
035 public String getModelClassName() {
036 return Team.class.getName();
037 }
038
039
044 public long getPrimaryKey() {
045 return _team.getPrimaryKey();
046 }
047
048
053 public void setPrimaryKey(long primaryKey) {
054 _team.setPrimaryKey(primaryKey);
055 }
056
057
062 public long getTeamId() {
063 return _team.getTeamId();
064 }
065
066
071 public void setTeamId(long teamId) {
072 _team.setTeamId(teamId);
073 }
074
075
080 public long getCompanyId() {
081 return _team.getCompanyId();
082 }
083
084
089 public void setCompanyId(long companyId) {
090 _team.setCompanyId(companyId);
091 }
092
093
098 public long getUserId() {
099 return _team.getUserId();
100 }
101
102
107 public void setUserId(long userId) {
108 _team.setUserId(userId);
109 }
110
111
117 public java.lang.String getUserUuid()
118 throws com.liferay.portal.kernel.exception.SystemException {
119 return _team.getUserUuid();
120 }
121
122
127 public void setUserUuid(java.lang.String userUuid) {
128 _team.setUserUuid(userUuid);
129 }
130
131
136 public java.lang.String getUserName() {
137 return _team.getUserName();
138 }
139
140
145 public void setUserName(java.lang.String userName) {
146 _team.setUserName(userName);
147 }
148
149
154 public java.util.Date getCreateDate() {
155 return _team.getCreateDate();
156 }
157
158
163 public void setCreateDate(java.util.Date createDate) {
164 _team.setCreateDate(createDate);
165 }
166
167
172 public java.util.Date getModifiedDate() {
173 return _team.getModifiedDate();
174 }
175
176
181 public void setModifiedDate(java.util.Date modifiedDate) {
182 _team.setModifiedDate(modifiedDate);
183 }
184
185
190 public long getGroupId() {
191 return _team.getGroupId();
192 }
193
194
199 public void setGroupId(long groupId) {
200 _team.setGroupId(groupId);
201 }
202
203
208 public java.lang.String getName() {
209 return _team.getName();
210 }
211
212
217 public void setName(java.lang.String name) {
218 _team.setName(name);
219 }
220
221
226 public java.lang.String getDescription() {
227 return _team.getDescription();
228 }
229
230
235 public void setDescription(java.lang.String description) {
236 _team.setDescription(description);
237 }
238
239 public boolean isNew() {
240 return _team.isNew();
241 }
242
243 public void setNew(boolean n) {
244 _team.setNew(n);
245 }
246
247 public boolean isCachedModel() {
248 return _team.isCachedModel();
249 }
250
251 public void setCachedModel(boolean cachedModel) {
252 _team.setCachedModel(cachedModel);
253 }
254
255 public boolean isEscapedModel() {
256 return _team.isEscapedModel();
257 }
258
259 public void setEscapedModel(boolean escapedModel) {
260 _team.setEscapedModel(escapedModel);
261 }
262
263 public java.io.Serializable getPrimaryKeyObj() {
264 return _team.getPrimaryKeyObj();
265 }
266
267 public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
268 _team.setPrimaryKeyObj(primaryKeyObj);
269 }
270
271 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
272 return _team.getExpandoBridge();
273 }
274
275 public void setExpandoBridgeAttributes(
276 com.liferay.portal.service.ServiceContext serviceContext) {
277 _team.setExpandoBridgeAttributes(serviceContext);
278 }
279
280 @Override
281 public java.lang.Object clone() {
282 return new TeamWrapper((Team)_team.clone());
283 }
284
285 public int compareTo(com.liferay.portal.model.Team team) {
286 return _team.compareTo(team);
287 }
288
289 @Override
290 public int hashCode() {
291 return _team.hashCode();
292 }
293
294 public com.liferay.portal.model.CacheModel<com.liferay.portal.model.Team> toCacheModel() {
295 return _team.toCacheModel();
296 }
297
298 public com.liferay.portal.model.Team toEscapedModel() {
299 return new TeamWrapper(_team.toEscapedModel());
300 }
301
302 @Override
303 public java.lang.String toString() {
304 return _team.toString();
305 }
306
307 public java.lang.String toXmlString() {
308 return _team.toXmlString();
309 }
310
311 public void persist()
312 throws com.liferay.portal.kernel.exception.SystemException {
313 _team.persist();
314 }
315
316 public com.liferay.portal.model.Role getRole()
317 throws com.liferay.portal.kernel.exception.PortalException,
318 com.liferay.portal.kernel.exception.SystemException {
319 return _team.getRole();
320 }
321
322 public Team getWrappedTeam() {
323 return _team;
324 }
325
326 public void resetOriginalValues() {
327 _team.resetOriginalValues();
328 }
329
330 private Team _team;
331 }