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.blogs.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link BlogsStatsUser}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       BlogsStatsUser
024     * @generated
025     */
026    public class BlogsStatsUserWrapper implements BlogsStatsUser {
027            public BlogsStatsUserWrapper(BlogsStatsUser blogsStatsUser) {
028                    _blogsStatsUser = blogsStatsUser;
029            }
030    
031            /**
032            * Gets the primary key of this blogs stats user.
033            *
034            * @return the primary key of this blogs stats user
035            */
036            public long getPrimaryKey() {
037                    return _blogsStatsUser.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this blogs stats user
042            *
043            * @param pk the primary key of this blogs stats user
044            */
045            public void setPrimaryKey(long pk) {
046                    _blogsStatsUser.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the stats user id of this blogs stats user.
051            *
052            * @return the stats user id of this blogs stats user
053            */
054            public long getStatsUserId() {
055                    return _blogsStatsUser.getStatsUserId();
056            }
057    
058            /**
059            * Sets the stats user id of this blogs stats user.
060            *
061            * @param statsUserId the stats user id of this blogs stats user
062            */
063            public void setStatsUserId(long statsUserId) {
064                    _blogsStatsUser.setStatsUserId(statsUserId);
065            }
066    
067            /**
068            * Gets the stats user uuid of this blogs stats user.
069            *
070            * @return the stats user uuid of this blogs 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 _blogsStatsUser.getStatsUserUuid();
076            }
077    
078            /**
079            * Sets the stats user uuid of this blogs stats user.
080            *
081            * @param statsUserUuid the stats user uuid of this blogs stats user
082            */
083            public void setStatsUserUuid(java.lang.String statsUserUuid) {
084                    _blogsStatsUser.setStatsUserUuid(statsUserUuid);
085            }
086    
087            /**
088            * Gets the group id of this blogs stats user.
089            *
090            * @return the group id of this blogs stats user
091            */
092            public long getGroupId() {
093                    return _blogsStatsUser.getGroupId();
094            }
095    
096            /**
097            * Sets the group id of this blogs stats user.
098            *
099            * @param groupId the group id of this blogs stats user
100            */
101            public void setGroupId(long groupId) {
102                    _blogsStatsUser.setGroupId(groupId);
103            }
104    
105            /**
106            * Gets the company id of this blogs stats user.
107            *
108            * @return the company id of this blogs stats user
109            */
110            public long getCompanyId() {
111                    return _blogsStatsUser.getCompanyId();
112            }
113    
114            /**
115            * Sets the company id of this blogs stats user.
116            *
117            * @param companyId the company id of this blogs stats user
118            */
119            public void setCompanyId(long companyId) {
120                    _blogsStatsUser.setCompanyId(companyId);
121            }
122    
123            /**
124            * Gets the user id of this blogs stats user.
125            *
126            * @return the user id of this blogs stats user
127            */
128            public long getUserId() {
129                    return _blogsStatsUser.getUserId();
130            }
131    
132            /**
133            * Sets the user id of this blogs stats user.
134            *
135            * @param userId the user id of this blogs stats user
136            */
137            public void setUserId(long userId) {
138                    _blogsStatsUser.setUserId(userId);
139            }
140    
141            /**
142            * Gets the user uuid of this blogs stats user.
143            *
144            * @return the user uuid of this blogs stats user
145            * @throws SystemException if a system exception occurred
146            */
147            public java.lang.String getUserUuid()
148                    throws com.liferay.portal.kernel.exception.SystemException {
149                    return _blogsStatsUser.getUserUuid();
150            }
151    
152            /**
153            * Sets the user uuid of this blogs stats user.
154            *
155            * @param userUuid the user uuid of this blogs stats user
156            */
157            public void setUserUuid(java.lang.String userUuid) {
158                    _blogsStatsUser.setUserUuid(userUuid);
159            }
160    
161            /**
162            * Gets the entry count of this blogs stats user.
163            *
164            * @return the entry count of this blogs stats user
165            */
166            public int getEntryCount() {
167                    return _blogsStatsUser.getEntryCount();
168            }
169    
170            /**
171            * Sets the entry count of this blogs stats user.
172            *
173            * @param entryCount the entry count of this blogs stats user
174            */
175            public void setEntryCount(int entryCount) {
176                    _blogsStatsUser.setEntryCount(entryCount);
177            }
178    
179            /**
180            * Gets the last post date of this blogs stats user.
181            *
182            * @return the last post date of this blogs stats user
183            */
184            public java.util.Date getLastPostDate() {
185                    return _blogsStatsUser.getLastPostDate();
186            }
187    
188            /**
189            * Sets the last post date of this blogs stats user.
190            *
191            * @param lastPostDate the last post date of this blogs stats user
192            */
193            public void setLastPostDate(java.util.Date lastPostDate) {
194                    _blogsStatsUser.setLastPostDate(lastPostDate);
195            }
196    
197            /**
198            * Gets the ratings total entries of this blogs stats user.
199            *
200            * @return the ratings total entries of this blogs stats user
201            */
202            public int getRatingsTotalEntries() {
203                    return _blogsStatsUser.getRatingsTotalEntries();
204            }
205    
206            /**
207            * Sets the ratings total entries of this blogs stats user.
208            *
209            * @param ratingsTotalEntries the ratings total entries of this blogs stats user
210            */
211            public void setRatingsTotalEntries(int ratingsTotalEntries) {
212                    _blogsStatsUser.setRatingsTotalEntries(ratingsTotalEntries);
213            }
214    
215            /**
216            * Gets the ratings total score of this blogs stats user.
217            *
218            * @return the ratings total score of this blogs stats user
219            */
220            public double getRatingsTotalScore() {
221                    return _blogsStatsUser.getRatingsTotalScore();
222            }
223    
224            /**
225            * Sets the ratings total score of this blogs stats user.
226            *
227            * @param ratingsTotalScore the ratings total score of this blogs stats user
228            */
229            public void setRatingsTotalScore(double ratingsTotalScore) {
230                    _blogsStatsUser.setRatingsTotalScore(ratingsTotalScore);
231            }
232    
233            /**
234            * Gets the ratings average score of this blogs stats user.
235            *
236            * @return the ratings average score of this blogs stats user
237            */
238            public double getRatingsAverageScore() {
239                    return _blogsStatsUser.getRatingsAverageScore();
240            }
241    
242            /**
243            * Sets the ratings average score of this blogs stats user.
244            *
245            * @param ratingsAverageScore the ratings average score of this blogs stats user
246            */
247            public void setRatingsAverageScore(double ratingsAverageScore) {
248                    _blogsStatsUser.setRatingsAverageScore(ratingsAverageScore);
249            }
250    
251            public boolean isNew() {
252                    return _blogsStatsUser.isNew();
253            }
254    
255            public void setNew(boolean n) {
256                    _blogsStatsUser.setNew(n);
257            }
258    
259            public boolean isCachedModel() {
260                    return _blogsStatsUser.isCachedModel();
261            }
262    
263            public void setCachedModel(boolean cachedModel) {
264                    _blogsStatsUser.setCachedModel(cachedModel);
265            }
266    
267            public boolean isEscapedModel() {
268                    return _blogsStatsUser.isEscapedModel();
269            }
270    
271            public void setEscapedModel(boolean escapedModel) {
272                    _blogsStatsUser.setEscapedModel(escapedModel);
273            }
274    
275            public java.io.Serializable getPrimaryKeyObj() {
276                    return _blogsStatsUser.getPrimaryKeyObj();
277            }
278    
279            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
280                    return _blogsStatsUser.getExpandoBridge();
281            }
282    
283            public void setExpandoBridgeAttributes(
284                    com.liferay.portal.service.ServiceContext serviceContext) {
285                    _blogsStatsUser.setExpandoBridgeAttributes(serviceContext);
286            }
287    
288            public java.lang.Object clone() {
289                    return _blogsStatsUser.clone();
290            }
291    
292            public int compareTo(
293                    com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser) {
294                    return _blogsStatsUser.compareTo(blogsStatsUser);
295            }
296    
297            public int hashCode() {
298                    return _blogsStatsUser.hashCode();
299            }
300    
301            public com.liferay.portlet.blogs.model.BlogsStatsUser toEscapedModel() {
302                    return _blogsStatsUser.toEscapedModel();
303            }
304    
305            public java.lang.String toString() {
306                    return _blogsStatsUser.toString();
307            }
308    
309            public java.lang.String toXmlString() {
310                    return _blogsStatsUser.toXmlString();
311            }
312    
313            public BlogsStatsUser getWrappedBlogsStatsUser() {
314                    return _blogsStatsUser;
315            }
316    
317            private BlogsStatsUser _blogsStatsUser;
318    }