001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link Team}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       Team
024     * @generated
025     */
026    public class TeamWrapper implements Team {
027            public TeamWrapper(Team team) {
028                    _team = team;
029            }
030    
031            public long getPrimaryKey() {
032                    return _team.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _team.setPrimaryKey(pk);
037            }
038    
039            public long getTeamId() {
040                    return _team.getTeamId();
041            }
042    
043            public void setTeamId(long teamId) {
044                    _team.setTeamId(teamId);
045            }
046    
047            public long getCompanyId() {
048                    return _team.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _team.setCompanyId(companyId);
053            }
054    
055            public long getUserId() {
056                    return _team.getUserId();
057            }
058    
059            public void setUserId(long userId) {
060                    _team.setUserId(userId);
061            }
062    
063            public java.lang.String getUserUuid()
064                    throws com.liferay.portal.kernel.exception.SystemException {
065                    return _team.getUserUuid();
066            }
067    
068            public void setUserUuid(java.lang.String userUuid) {
069                    _team.setUserUuid(userUuid);
070            }
071    
072            public java.lang.String getUserName() {
073                    return _team.getUserName();
074            }
075    
076            public void setUserName(java.lang.String userName) {
077                    _team.setUserName(userName);
078            }
079    
080            public java.util.Date getCreateDate() {
081                    return _team.getCreateDate();
082            }
083    
084            public void setCreateDate(java.util.Date createDate) {
085                    _team.setCreateDate(createDate);
086            }
087    
088            public java.util.Date getModifiedDate() {
089                    return _team.getModifiedDate();
090            }
091    
092            public void setModifiedDate(java.util.Date modifiedDate) {
093                    _team.setModifiedDate(modifiedDate);
094            }
095    
096            public long getGroupId() {
097                    return _team.getGroupId();
098            }
099    
100            public void setGroupId(long groupId) {
101                    _team.setGroupId(groupId);
102            }
103    
104            public java.lang.String getName() {
105                    return _team.getName();
106            }
107    
108            public void setName(java.lang.String name) {
109                    _team.setName(name);
110            }
111    
112            public java.lang.String getDescription() {
113                    return _team.getDescription();
114            }
115    
116            public void setDescription(java.lang.String description) {
117                    _team.setDescription(description);
118            }
119    
120            public com.liferay.portal.model.Team toEscapedModel() {
121                    return _team.toEscapedModel();
122            }
123    
124            public boolean isNew() {
125                    return _team.isNew();
126            }
127    
128            public void setNew(boolean n) {
129                    _team.setNew(n);
130            }
131    
132            public boolean isCachedModel() {
133                    return _team.isCachedModel();
134            }
135    
136            public void setCachedModel(boolean cachedModel) {
137                    _team.setCachedModel(cachedModel);
138            }
139    
140            public boolean isEscapedModel() {
141                    return _team.isEscapedModel();
142            }
143    
144            public void setEscapedModel(boolean escapedModel) {
145                    _team.setEscapedModel(escapedModel);
146            }
147    
148            public java.io.Serializable getPrimaryKeyObj() {
149                    return _team.getPrimaryKeyObj();
150            }
151    
152            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
153                    return _team.getExpandoBridge();
154            }
155    
156            public void setExpandoBridgeAttributes(
157                    com.liferay.portal.service.ServiceContext serviceContext) {
158                    _team.setExpandoBridgeAttributes(serviceContext);
159            }
160    
161            public java.lang.Object clone() {
162                    return _team.clone();
163            }
164    
165            public int compareTo(com.liferay.portal.model.Team team) {
166                    return _team.compareTo(team);
167            }
168    
169            public int hashCode() {
170                    return _team.hashCode();
171            }
172    
173            public java.lang.String toString() {
174                    return _team.toString();
175            }
176    
177            public java.lang.String toXmlString() {
178                    return _team.toXmlString();
179            }
180    
181            public com.liferay.portal.model.Role getRole()
182                    throws com.liferay.portal.kernel.exception.PortalException,
183                            com.liferay.portal.kernel.exception.SystemException {
184                    return _team.getRole();
185            }
186    
187            public Team getWrappedTeam() {
188                    return _team;
189            }
190    
191            private Team _team;
192    }