001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.messageboards.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link MBStatsUser}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       MBStatsUser
024     * @generated
025     */
026    public class MBStatsUserWrapper implements MBStatsUser {
027            public MBStatsUserWrapper(MBStatsUser mbStatsUser) {
028                    _mbStatsUser = mbStatsUser;
029            }
030    
031            /**
032            * Gets the primary key of this message boards stats user.
033            *
034            * @return the primary key of this message boards stats user
035            */
036            public long getPrimaryKey() {
037                    return _mbStatsUser.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this message boards stats user
042            *
043            * @param pk the primary key of this message boards stats user
044            */
045            public void setPrimaryKey(long pk) {
046                    _mbStatsUser.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the stats user id of this message boards stats user.
051            *
052            * @return the stats user id of this message boards stats user
053            */
054            public long getStatsUserId() {
055                    return _mbStatsUser.getStatsUserId();
056            }
057    
058            /**
059            * Sets the stats user id of this message boards stats user.
060            *
061            * @param statsUserId the stats user id of this message boards stats user
062            */
063            public void setStatsUserId(long statsUserId) {
064                    _mbStatsUser.setStatsUserId(statsUserId);
065            }
066    
067            /**
068            * Gets the stats user uuid of this message boards stats user.
069            *
070            * @return the stats user uuid of this message boards stats user
071            * @throws SystemException if a system exception occurred
072            */
073            public java.lang.String getStatsUserUuid()
074                    throws com.liferay.portal.kernel.exception.SystemException {
075                    return _mbStatsUser.getStatsUserUuid();
076            }
077    
078            /**
079            * Sets the stats user uuid of this message boards stats user.
080            *
081            * @param statsUserUuid the stats user uuid of this message boards stats user
082            */
083            public void setStatsUserUuid(java.lang.String statsUserUuid) {
084                    _mbStatsUser.setStatsUserUuid(statsUserUuid);
085            }
086    
087            /**
088            * Gets the group id of this message boards stats user.
089            *
090            * @return the group id of this message boards stats user
091            */
092            public long getGroupId() {
093                    return _mbStatsUser.getGroupId();
094            }
095    
096            /**
097            * Sets the group id of this message boards stats user.
098            *
099            * @param groupId the group id of this message boards stats user
100            */
101            public void setGroupId(long groupId) {
102                    _mbStatsUser.setGroupId(groupId);
103            }
104    
105            /**
106            * Gets the user id of this message boards stats user.
107            *
108            * @return the user id of this message boards stats user
109            */
110            public long getUserId() {
111                    return _mbStatsUser.getUserId();
112            }
113    
114            /**
115            * Sets the user id of this message boards stats user.
116            *
117            * @param userId the user id of this message boards stats user
118            */
119            public void setUserId(long userId) {
120                    _mbStatsUser.setUserId(userId);
121            }
122    
123            /**
124            * Gets the user uuid of this message boards stats user.
125            *
126            * @return the user uuid of this message boards stats user
127            * @throws SystemException if a system exception occurred
128            */
129            public java.lang.String getUserUuid()
130                    throws com.liferay.portal.kernel.exception.SystemException {
131                    return _mbStatsUser.getUserUuid();
132            }
133    
134            /**
135            * Sets the user uuid of this message boards stats user.
136            *
137            * @param userUuid the user uuid of this message boards stats user
138            */
139            public void setUserUuid(java.lang.String userUuid) {
140                    _mbStatsUser.setUserUuid(userUuid);
141            }
142    
143            /**
144            * Gets the message count of this message boards stats user.
145            *
146            * @return the message count of this message boards stats user
147            */
148            public int getMessageCount() {
149                    return _mbStatsUser.getMessageCount();
150            }
151    
152            /**
153            * Sets the message count of this message boards stats user.
154            *
155            * @param messageCount the message count of this message boards stats user
156            */
157            public void setMessageCount(int messageCount) {
158                    _mbStatsUser.setMessageCount(messageCount);
159            }
160    
161            /**
162            * Gets the last post date of this message boards stats user.
163            *
164            * @return the last post date of this message boards stats user
165            */
166            public java.util.Date getLastPostDate() {
167                    return _mbStatsUser.getLastPostDate();
168            }
169    
170            /**
171            * Sets the last post date of this message boards stats user.
172            *
173            * @param lastPostDate the last post date of this message boards stats user
174            */
175            public void setLastPostDate(java.util.Date lastPostDate) {
176                    _mbStatsUser.setLastPostDate(lastPostDate);
177            }
178    
179            public boolean isNew() {
180                    return _mbStatsUser.isNew();
181            }
182    
183            public void setNew(boolean n) {
184                    _mbStatsUser.setNew(n);
185            }
186    
187            public boolean isCachedModel() {
188                    return _mbStatsUser.isCachedModel();
189            }
190    
191            public void setCachedModel(boolean cachedModel) {
192                    _mbStatsUser.setCachedModel(cachedModel);
193            }
194    
195            public boolean isEscapedModel() {
196                    return _mbStatsUser.isEscapedModel();
197            }
198    
199            public void setEscapedModel(boolean escapedModel) {
200                    _mbStatsUser.setEscapedModel(escapedModel);
201            }
202    
203            public java.io.Serializable getPrimaryKeyObj() {
204                    return _mbStatsUser.getPrimaryKeyObj();
205            }
206    
207            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
208                    return _mbStatsUser.getExpandoBridge();
209            }
210    
211            public void setExpandoBridgeAttributes(
212                    com.liferay.portal.service.ServiceContext serviceContext) {
213                    _mbStatsUser.setExpandoBridgeAttributes(serviceContext);
214            }
215    
216            public java.lang.Object clone() {
217                    return _mbStatsUser.clone();
218            }
219    
220            public int compareTo(
221                    com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser) {
222                    return _mbStatsUser.compareTo(mbStatsUser);
223            }
224    
225            public int hashCode() {
226                    return _mbStatsUser.hashCode();
227            }
228    
229            public com.liferay.portlet.messageboards.model.MBStatsUser toEscapedModel() {
230                    return _mbStatsUser.toEscapedModel();
231            }
232    
233            public java.lang.String toString() {
234                    return _mbStatsUser.toString();
235            }
236    
237            public java.lang.String toXmlString() {
238                    return _mbStatsUser.toXmlString();
239            }
240    
241            public MBStatsUser getWrappedMBStatsUser() {
242                    return _mbStatsUser;
243            }
244    
245            private MBStatsUser _mbStatsUser;
246    }