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.portlet.blogs.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link BlogsStatsUserLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       BlogsStatsUserLocalService
024     * @generated
025     */
026    public class BlogsStatsUserLocalServiceWrapper
027            implements BlogsStatsUserLocalService {
028            public BlogsStatsUserLocalServiceWrapper(
029                    BlogsStatsUserLocalService blogsStatsUserLocalService) {
030                    _blogsStatsUserLocalService = blogsStatsUserLocalService;
031            }
032    
033            /**
034            * Adds the blogs stats user to the database. Also notifies the appropriate model listeners.
035            *
036            * @param blogsStatsUser the blogs stats user to add
037            * @return the blogs stats user that was added
038            * @throws SystemException if a system exception occurred
039            */
040            public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
041                    com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
042                    throws com.liferay.portal.kernel.exception.SystemException {
043                    return _blogsStatsUserLocalService.addBlogsStatsUser(blogsStatsUser);
044            }
045    
046            /**
047            * Creates a new blogs stats user with the primary key. Does not add the blogs stats user to the database.
048            *
049            * @param statsUserId the primary key for the new blogs stats user
050            * @return the new blogs stats user
051            */
052            public com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
053                    long statsUserId) {
054                    return _blogsStatsUserLocalService.createBlogsStatsUser(statsUserId);
055            }
056    
057            /**
058            * Deletes the blogs stats user with the primary key from the database. Also notifies the appropriate model listeners.
059            *
060            * @param statsUserId the primary key of the blogs stats user to delete
061            * @throws PortalException if a blogs stats user with the primary key could not be found
062            * @throws SystemException if a system exception occurred
063            */
064            public void deleteBlogsStatsUser(long statsUserId)
065                    throws com.liferay.portal.kernel.exception.PortalException,
066                            com.liferay.portal.kernel.exception.SystemException {
067                    _blogsStatsUserLocalService.deleteBlogsStatsUser(statsUserId);
068            }
069    
070            /**
071            * Deletes the blogs stats user from the database. Also notifies the appropriate model listeners.
072            *
073            * @param blogsStatsUser the blogs stats user to delete
074            * @throws SystemException if a system exception occurred
075            */
076            public void deleteBlogsStatsUser(
077                    com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
078                    throws com.liferay.portal.kernel.exception.SystemException {
079                    _blogsStatsUserLocalService.deleteBlogsStatsUser(blogsStatsUser);
080            }
081    
082            /**
083            * Performs a dynamic query on the database and returns the matching rows.
084            *
085            * @param dynamicQuery the dynamic query to search with
086            * @return the matching rows
087            * @throws SystemException if a system exception occurred
088            */
089            @SuppressWarnings("rawtypes")
090            public java.util.List dynamicQuery(
091                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery);
094            }
095    
096            /**
097            * Performs a dynamic query on the database and returns a range of the matching rows.
098            *
099            * <p>
100            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
101            * </p>
102            *
103            * @param dynamicQuery the dynamic query to search with
104            * @param start the lower bound of the range of model instances to return
105            * @param end the upper bound of the range of model instances to return (not inclusive)
106            * @return the range of matching rows
107            * @throws SystemException if a system exception occurred
108            */
109            @SuppressWarnings("rawtypes")
110            public java.util.List dynamicQuery(
111                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112                    int end) throws com.liferay.portal.kernel.exception.SystemException {
113                    return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start, end);
114            }
115    
116            /**
117            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
118            *
119            * <p>
120            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
121            * </p>
122            *
123            * @param dynamicQuery the dynamic query to search with
124            * @param start the lower bound of the range of model instances to return
125            * @param end the upper bound of the range of model instances to return (not inclusive)
126            * @param orderByComparator the comparator to order the results by
127            * @return the ordered range of matching rows
128            * @throws SystemException if a system exception occurred
129            */
130            @SuppressWarnings("rawtypes")
131            public java.util.List dynamicQuery(
132                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133                    int end,
134                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135                    throws com.liferay.portal.kernel.exception.SystemException {
136                    return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start,
137                            end, orderByComparator);
138            }
139    
140            /**
141            * Counts the number of rows that match the dynamic query.
142            *
143            * @param dynamicQuery the dynamic query to search with
144            * @return the number of rows that match the dynamic query
145            * @throws SystemException if a system exception occurred
146            */
147            public long dynamicQueryCount(
148                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149                    throws com.liferay.portal.kernel.exception.SystemException {
150                    return _blogsStatsUserLocalService.dynamicQueryCount(dynamicQuery);
151            }
152    
153            /**
154            * Gets the blogs stats user with the primary key.
155            *
156            * @param statsUserId the primary key of the blogs stats user to get
157            * @return the blogs stats user
158            * @throws PortalException if a blogs stats user with the primary key could not be found
159            * @throws SystemException if a system exception occurred
160            */
161            public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
162                    long statsUserId)
163                    throws com.liferay.portal.kernel.exception.PortalException,
164                            com.liferay.portal.kernel.exception.SystemException {
165                    return _blogsStatsUserLocalService.getBlogsStatsUser(statsUserId);
166            }
167    
168            /**
169            * Gets a range of all the blogs stats users.
170            *
171            * <p>
172            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
173            * </p>
174            *
175            * @param start the lower bound of the range of blogs stats users to return
176            * @param end the upper bound of the range of blogs stats users to return (not inclusive)
177            * @return the range of blogs stats users
178            * @throws SystemException if a system exception occurred
179            */
180            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
181                    int start, int end)
182                    throws com.liferay.portal.kernel.exception.SystemException {
183                    return _blogsStatsUserLocalService.getBlogsStatsUsers(start, end);
184            }
185    
186            /**
187            * Gets the number of blogs stats users.
188            *
189            * @return the number of blogs stats users
190            * @throws SystemException if a system exception occurred
191            */
192            public int getBlogsStatsUsersCount()
193                    throws com.liferay.portal.kernel.exception.SystemException {
194                    return _blogsStatsUserLocalService.getBlogsStatsUsersCount();
195            }
196    
197            /**
198            * Updates the blogs stats user in the database. Also notifies the appropriate model listeners.
199            *
200            * @param blogsStatsUser the blogs stats user to update
201            * @return the blogs stats user that was updated
202            * @throws SystemException if a system exception occurred
203            */
204            public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
205                    com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
206                    throws com.liferay.portal.kernel.exception.SystemException {
207                    return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser);
208            }
209    
210            /**
211            * Updates the blogs stats user in the database. Also notifies the appropriate model listeners.
212            *
213            * @param blogsStatsUser the blogs stats user to update
214            * @param merge whether to merge the blogs stats user with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
215            * @return the blogs stats user that was updated
216            * @throws SystemException if a system exception occurred
217            */
218            public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
219                    com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser,
220                    boolean merge)
221                    throws com.liferay.portal.kernel.exception.SystemException {
222                    return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser,
223                            merge);
224            }
225    
226            public void deleteStatsUserByGroupId(long groupId)
227                    throws com.liferay.portal.kernel.exception.SystemException {
228                    _blogsStatsUserLocalService.deleteStatsUserByGroupId(groupId);
229            }
230    
231            public void deleteStatsUserByUserId(long userId)
232                    throws com.liferay.portal.kernel.exception.SystemException {
233                    _blogsStatsUserLocalService.deleteStatsUserByUserId(userId);
234            }
235    
236            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
237                    long companyId, int start, int end)
238                    throws com.liferay.portal.kernel.exception.SystemException {
239                    return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
240                            start, end);
241            }
242    
243            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
244                    long companyId, int start, int end,
245                    com.liferay.portal.kernel.util.OrderByComparator obc)
246                    throws com.liferay.portal.kernel.exception.SystemException {
247                    return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
248                            start, end, obc);
249            }
250    
251            public int getCompanyStatsUsersCount(long companyId)
252                    throws com.liferay.portal.kernel.exception.SystemException {
253                    return _blogsStatsUserLocalService.getCompanyStatsUsersCount(companyId);
254            }
255    
256            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupsStatsUsers(
257                    long companyId, long groupId, int start, int end)
258                    throws com.liferay.portal.kernel.exception.SystemException {
259                    return _blogsStatsUserLocalService.getGroupsStatsUsers(companyId,
260                            groupId, start, end);
261            }
262    
263            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
264                    long groupId, int start, int end)
265                    throws com.liferay.portal.kernel.exception.SystemException {
266                    return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
267                            end);
268            }
269    
270            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
271                    long groupId, int start, int end,
272                    com.liferay.portal.kernel.util.OrderByComparator obc)
273                    throws com.liferay.portal.kernel.exception.SystemException {
274                    return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
275                            end, obc);
276            }
277    
278            public int getGroupStatsUsersCount(long groupId)
279                    throws com.liferay.portal.kernel.exception.SystemException {
280                    return _blogsStatsUserLocalService.getGroupStatsUsersCount(groupId);
281            }
282    
283            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
284                    long organizationId, int start, int end)
285                    throws com.liferay.portal.kernel.exception.SystemException {
286                    return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
287                            start, end);
288            }
289    
290            public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
291                    long organizationId, int start, int end,
292                    com.liferay.portal.kernel.util.OrderByComparator obc)
293                    throws com.liferay.portal.kernel.exception.SystemException {
294                    return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
295                            start, end, obc);
296            }
297    
298            public int getOrganizationStatsUsersCount(long organizationId)
299                    throws com.liferay.portal.kernel.exception.SystemException {
300                    return _blogsStatsUserLocalService.getOrganizationStatsUsersCount(organizationId);
301            }
302    
303            public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
304                    long groupId, long userId)
305                    throws com.liferay.portal.kernel.exception.PortalException,
306                            com.liferay.portal.kernel.exception.SystemException {
307                    return _blogsStatsUserLocalService.getStatsUser(groupId, userId);
308            }
309    
310            public void updateStatsUser(long groupId, long userId)
311                    throws com.liferay.portal.kernel.exception.PortalException,
312                            com.liferay.portal.kernel.exception.SystemException {
313                    _blogsStatsUserLocalService.updateStatsUser(groupId, userId);
314            }
315    
316            public void updateStatsUser(long groupId, long userId,
317                    java.util.Date displayDate)
318                    throws com.liferay.portal.kernel.exception.PortalException,
319                            com.liferay.portal.kernel.exception.SystemException {
320                    _blogsStatsUserLocalService.updateStatsUser(groupId, userId, displayDate);
321            }
322    
323            public BlogsStatsUserLocalService getWrappedBlogsStatsUserLocalService() {
324                    return _blogsStatsUserLocalService;
325            }
326    
327            private BlogsStatsUserLocalService _blogsStatsUserLocalService;
328    }