001
014
015 package com.liferay.portal.model;
016
017
018
027 public class TeamWrapper implements Team {
028 public TeamWrapper(Team team) {
029 _team = team;
030 }
031
032 public long getPrimaryKey() {
033 return _team.getPrimaryKey();
034 }
035
036 public void setPrimaryKey(long pk) {
037 _team.setPrimaryKey(pk);
038 }
039
040 public long getTeamId() {
041 return _team.getTeamId();
042 }
043
044 public void setTeamId(long teamId) {
045 _team.setTeamId(teamId);
046 }
047
048 public long getCompanyId() {
049 return _team.getCompanyId();
050 }
051
052 public void setCompanyId(long companyId) {
053 _team.setCompanyId(companyId);
054 }
055
056 public long getUserId() {
057 return _team.getUserId();
058 }
059
060 public void setUserId(long userId) {
061 _team.setUserId(userId);
062 }
063
064 public java.lang.String getUserUuid()
065 throws com.liferay.portal.kernel.exception.SystemException {
066 return _team.getUserUuid();
067 }
068
069 public void setUserUuid(java.lang.String userUuid) {
070 _team.setUserUuid(userUuid);
071 }
072
073 public java.lang.String getUserName() {
074 return _team.getUserName();
075 }
076
077 public void setUserName(java.lang.String userName) {
078 _team.setUserName(userName);
079 }
080
081 public java.util.Date getCreateDate() {
082 return _team.getCreateDate();
083 }
084
085 public void setCreateDate(java.util.Date createDate) {
086 _team.setCreateDate(createDate);
087 }
088
089 public java.util.Date getModifiedDate() {
090 return _team.getModifiedDate();
091 }
092
093 public void setModifiedDate(java.util.Date modifiedDate) {
094 _team.setModifiedDate(modifiedDate);
095 }
096
097 public long getGroupId() {
098 return _team.getGroupId();
099 }
100
101 public void setGroupId(long groupId) {
102 _team.setGroupId(groupId);
103 }
104
105 public java.lang.String getName() {
106 return _team.getName();
107 }
108
109 public void setName(java.lang.String name) {
110 _team.setName(name);
111 }
112
113 public java.lang.String getDescription() {
114 return _team.getDescription();
115 }
116
117 public void setDescription(java.lang.String description) {
118 _team.setDescription(description);
119 }
120
121 public com.liferay.portal.model.Team toEscapedModel() {
122 return _team.toEscapedModel();
123 }
124
125 public boolean isNew() {
126 return _team.isNew();
127 }
128
129 public void setNew(boolean n) {
130 _team.setNew(n);
131 }
132
133 public boolean isCachedModel() {
134 return _team.isCachedModel();
135 }
136
137 public void setCachedModel(boolean cachedModel) {
138 _team.setCachedModel(cachedModel);
139 }
140
141 public boolean isEscapedModel() {
142 return _team.isEscapedModel();
143 }
144
145 public void setEscapedModel(boolean escapedModel) {
146 _team.setEscapedModel(escapedModel);
147 }
148
149 public java.io.Serializable getPrimaryKeyObj() {
150 return _team.getPrimaryKeyObj();
151 }
152
153 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
154 return _team.getExpandoBridge();
155 }
156
157 public void setExpandoBridgeAttributes(
158 com.liferay.portal.service.ServiceContext serviceContext) {
159 _team.setExpandoBridgeAttributes(serviceContext);
160 }
161
162 public java.lang.Object clone() {
163 return _team.clone();
164 }
165
166 public int compareTo(com.liferay.portal.model.Team team) {
167 return _team.compareTo(team);
168 }
169
170 public int hashCode() {
171 return _team.hashCode();
172 }
173
174 public java.lang.String toString() {
175 return _team.toString();
176 }
177
178 public java.lang.String toXmlString() {
179 return _team.toXmlString();
180 }
181
182 public com.liferay.portal.model.Role getRole()
183 throws com.liferay.portal.kernel.exception.PortalException,
184 com.liferay.portal.kernel.exception.SystemException {
185 return _team.getRole();
186 }
187
188 public Team getWrappedTeam() {
189 return _team;
190 }
191
192 private Team _team;
193 }