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
036 public long getPrimaryKey() {
037 return _team.getPrimaryKey();
038 }
039
040
045 public void setPrimaryKey(long pk) {
046 _team.setPrimaryKey(pk);
047 }
048
049
054 public long getTeamId() {
055 return _team.getTeamId();
056 }
057
058
063 public void setTeamId(long teamId) {
064 _team.setTeamId(teamId);
065 }
066
067
072 public long getCompanyId() {
073 return _team.getCompanyId();
074 }
075
076
081 public void setCompanyId(long companyId) {
082 _team.setCompanyId(companyId);
083 }
084
085
090 public long getUserId() {
091 return _team.getUserId();
092 }
093
094
099 public void setUserId(long userId) {
100 _team.setUserId(userId);
101 }
102
103
109 public java.lang.String getUserUuid()
110 throws com.liferay.portal.kernel.exception.SystemException {
111 return _team.getUserUuid();
112 }
113
114
119 public void setUserUuid(java.lang.String userUuid) {
120 _team.setUserUuid(userUuid);
121 }
122
123
128 public java.lang.String getUserName() {
129 return _team.getUserName();
130 }
131
132
137 public void setUserName(java.lang.String userName) {
138 _team.setUserName(userName);
139 }
140
141
146 public java.util.Date getCreateDate() {
147 return _team.getCreateDate();
148 }
149
150
155 public void setCreateDate(java.util.Date createDate) {
156 _team.setCreateDate(createDate);
157 }
158
159
164 public java.util.Date getModifiedDate() {
165 return _team.getModifiedDate();
166 }
167
168
173 public void setModifiedDate(java.util.Date modifiedDate) {
174 _team.setModifiedDate(modifiedDate);
175 }
176
177
182 public long getGroupId() {
183 return _team.getGroupId();
184 }
185
186
191 public void setGroupId(long groupId) {
192 _team.setGroupId(groupId);
193 }
194
195
200 public java.lang.String getName() {
201 return _team.getName();
202 }
203
204
209 public void setName(java.lang.String name) {
210 _team.setName(name);
211 }
212
213
218 public java.lang.String getDescription() {
219 return _team.getDescription();
220 }
221
222
227 public void setDescription(java.lang.String description) {
228 _team.setDescription(description);
229 }
230
231 public boolean isNew() {
232 return _team.isNew();
233 }
234
235 public void setNew(boolean n) {
236 _team.setNew(n);
237 }
238
239 public boolean isCachedModel() {
240 return _team.isCachedModel();
241 }
242
243 public void setCachedModel(boolean cachedModel) {
244 _team.setCachedModel(cachedModel);
245 }
246
247 public boolean isEscapedModel() {
248 return _team.isEscapedModel();
249 }
250
251 public void setEscapedModel(boolean escapedModel) {
252 _team.setEscapedModel(escapedModel);
253 }
254
255 public java.io.Serializable getPrimaryKeyObj() {
256 return _team.getPrimaryKeyObj();
257 }
258
259 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
260 return _team.getExpandoBridge();
261 }
262
263 public void setExpandoBridgeAttributes(
264 com.liferay.portal.service.ServiceContext serviceContext) {
265 _team.setExpandoBridgeAttributes(serviceContext);
266 }
267
268 public java.lang.Object clone() {
269 return _team.clone();
270 }
271
272 public int compareTo(com.liferay.portal.model.Team team) {
273 return _team.compareTo(team);
274 }
275
276 public int hashCode() {
277 return _team.hashCode();
278 }
279
280 public com.liferay.portal.model.Team toEscapedModel() {
281 return _team.toEscapedModel();
282 }
283
284 public java.lang.String toString() {
285 return _team.toString();
286 }
287
288 public java.lang.String toXmlString() {
289 return _team.toXmlString();
290 }
291
292 public com.liferay.portal.model.Role getRole()
293 throws com.liferay.portal.kernel.exception.PortalException,
294 com.liferay.portal.kernel.exception.SystemException {
295 return _team.getRole();
296 }
297
298 public Team getWrappedTeam() {
299 return _team;
300 }
301
302 private Team _team;
303 }