1
14
15 package com.liferay.portal.model;
16
17
18
34 public class TeamWrapper implements Team {
35 public TeamWrapper(Team team) {
36 _team = team;
37 }
38
39 public long getPrimaryKey() {
40 return _team.getPrimaryKey();
41 }
42
43 public void setPrimaryKey(long pk) {
44 _team.setPrimaryKey(pk);
45 }
46
47 public long getTeamId() {
48 return _team.getTeamId();
49 }
50
51 public void setTeamId(long teamId) {
52 _team.setTeamId(teamId);
53 }
54
55 public long getCompanyId() {
56 return _team.getCompanyId();
57 }
58
59 public void setCompanyId(long companyId) {
60 _team.setCompanyId(companyId);
61 }
62
63 public long getUserId() {
64 return _team.getUserId();
65 }
66
67 public void setUserId(long userId) {
68 _team.setUserId(userId);
69 }
70
71 public java.lang.String getUserUuid()
72 throws com.liferay.portal.kernel.exception.SystemException {
73 return _team.getUserUuid();
74 }
75
76 public void setUserUuid(java.lang.String userUuid) {
77 _team.setUserUuid(userUuid);
78 }
79
80 public java.lang.String getUserName() {
81 return _team.getUserName();
82 }
83
84 public void setUserName(java.lang.String userName) {
85 _team.setUserName(userName);
86 }
87
88 public java.util.Date getCreateDate() {
89 return _team.getCreateDate();
90 }
91
92 public void setCreateDate(java.util.Date createDate) {
93 _team.setCreateDate(createDate);
94 }
95
96 public java.util.Date getModifiedDate() {
97 return _team.getModifiedDate();
98 }
99
100 public void setModifiedDate(java.util.Date modifiedDate) {
101 _team.setModifiedDate(modifiedDate);
102 }
103
104 public long getGroupId() {
105 return _team.getGroupId();
106 }
107
108 public void setGroupId(long groupId) {
109 _team.setGroupId(groupId);
110 }
111
112 public java.lang.String getName() {
113 return _team.getName();
114 }
115
116 public void setName(java.lang.String name) {
117 _team.setName(name);
118 }
119
120 public java.lang.String getDescription() {
121 return _team.getDescription();
122 }
123
124 public void setDescription(java.lang.String description) {
125 _team.setDescription(description);
126 }
127
128 public com.liferay.portal.model.Team toEscapedModel() {
129 return _team.toEscapedModel();
130 }
131
132 public boolean isNew() {
133 return _team.isNew();
134 }
135
136 public boolean setNew(boolean n) {
137 return _team.setNew(n);
138 }
139
140 public boolean isCachedModel() {
141 return _team.isCachedModel();
142 }
143
144 public void setCachedModel(boolean cachedModel) {
145 _team.setCachedModel(cachedModel);
146 }
147
148 public boolean isEscapedModel() {
149 return _team.isEscapedModel();
150 }
151
152 public void setEscapedModel(boolean escapedModel) {
153 _team.setEscapedModel(escapedModel);
154 }
155
156 public java.io.Serializable getPrimaryKeyObj() {
157 return _team.getPrimaryKeyObj();
158 }
159
160 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
161 return _team.getExpandoBridge();
162 }
163
164 public void setExpandoBridgeAttributes(
165 com.liferay.portal.service.ServiceContext serviceContext) {
166 _team.setExpandoBridgeAttributes(serviceContext);
167 }
168
169 public java.lang.Object clone() {
170 return _team.clone();
171 }
172
173 public int compareTo(com.liferay.portal.model.Team team) {
174 return _team.compareTo(team);
175 }
176
177 public int hashCode() {
178 return _team.hashCode();
179 }
180
181 public java.lang.String toString() {
182 return _team.toString();
183 }
184
185 public java.lang.String toXmlString() {
186 return _team.toXmlString();
187 }
188
189 public com.liferay.portal.model.Role getRole()
190 throws com.liferay.portal.kernel.exception.PortalException,
191 com.liferay.portal.kernel.exception.SystemException {
192 return _team.getRole();
193 }
194
195 public Team getWrappedTeam() {
196 return _team;
197 }
198
199 private Team _team;
200 }