1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.blogs.service;
24  
25  
26  /**
27   * <a href="BlogsStatsUserLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link BlogsStatsUserLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       BlogsStatsUserLocalService
40   * @generated
41   */
42  public class BlogsStatsUserLocalServiceWrapper
43      implements BlogsStatsUserLocalService {
44      public BlogsStatsUserLocalServiceWrapper(
45          BlogsStatsUserLocalService blogsStatsUserLocalService) {
46          _blogsStatsUserLocalService = blogsStatsUserLocalService;
47      }
48  
49      public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
50          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
51          throws com.liferay.portal.SystemException {
52          return _blogsStatsUserLocalService.addBlogsStatsUser(blogsStatsUser);
53      }
54  
55      public com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
56          long statsUserId) {
57          return _blogsStatsUserLocalService.createBlogsStatsUser(statsUserId);
58      }
59  
60      public void deleteBlogsStatsUser(long statsUserId)
61          throws com.liferay.portal.PortalException,
62              com.liferay.portal.SystemException {
63          _blogsStatsUserLocalService.deleteBlogsStatsUser(statsUserId);
64      }
65  
66      public void deleteBlogsStatsUser(
67          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
68          throws com.liferay.portal.SystemException {
69          _blogsStatsUserLocalService.deleteBlogsStatsUser(blogsStatsUser);
70      }
71  
72      public java.util.List<Object> dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74          throws com.liferay.portal.SystemException {
75          return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery);
76      }
77  
78      public java.util.List<Object> dynamicQuery(
79          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80          int end) throws com.liferay.portal.SystemException {
81          return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start, end);
82      }
83  
84      public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
85          long statsUserId)
86          throws com.liferay.portal.PortalException,
87              com.liferay.portal.SystemException {
88          return _blogsStatsUserLocalService.getBlogsStatsUser(statsUserId);
89      }
90  
91      public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
92          int start, int end) throws com.liferay.portal.SystemException {
93          return _blogsStatsUserLocalService.getBlogsStatsUsers(start, end);
94      }
95  
96      public int getBlogsStatsUsersCount()
97          throws com.liferay.portal.SystemException {
98          return _blogsStatsUserLocalService.getBlogsStatsUsersCount();
99      }
100 
101     public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
102         com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
103         throws com.liferay.portal.SystemException {
104         return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser);
105     }
106 
107     public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
108         com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser,
109         boolean merge) throws com.liferay.portal.SystemException {
110         return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser,
111             merge);
112     }
113 
114     public void deleteStatsUserByGroupId(long groupId)
115         throws com.liferay.portal.SystemException {
116         _blogsStatsUserLocalService.deleteStatsUserByGroupId(groupId);
117     }
118 
119     public void deleteStatsUserByUserId(long userId)
120         throws com.liferay.portal.SystemException {
121         _blogsStatsUserLocalService.deleteStatsUserByUserId(userId);
122     }
123 
124     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
125         long companyId, int start, int end)
126         throws com.liferay.portal.SystemException {
127         return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
128             start, end);
129     }
130 
131     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
132         long companyId, int start, int end,
133         com.liferay.portal.kernel.util.OrderByComparator obc)
134         throws com.liferay.portal.SystemException {
135         return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
136             start, end, obc);
137     }
138 
139     public int getCompanyStatsUsersCount(long companyId)
140         throws com.liferay.portal.SystemException {
141         return _blogsStatsUserLocalService.getCompanyStatsUsersCount(companyId);
142     }
143 
144     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
145         long groupId, int start, int end)
146         throws com.liferay.portal.SystemException {
147         return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
148             end);
149     }
150 
151     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
152         long groupId, int start, int end,
153         com.liferay.portal.kernel.util.OrderByComparator obc)
154         throws com.liferay.portal.SystemException {
155         return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
156             end, obc);
157     }
158 
159     public int getGroupStatsUsersCount(long groupId)
160         throws com.liferay.portal.SystemException {
161         return _blogsStatsUserLocalService.getGroupStatsUsersCount(groupId);
162     }
163 
164     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
165         long organizationId, int start, int end)
166         throws com.liferay.portal.SystemException {
167         return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
168             start, end);
169     }
170 
171     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
172         long organizationId, int start, int end,
173         com.liferay.portal.kernel.util.OrderByComparator obc)
174         throws com.liferay.portal.SystemException {
175         return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
176             start, end, obc);
177     }
178 
179     public int getOrganizationStatsUsersCount(long organizationId)
180         throws com.liferay.portal.SystemException {
181         return _blogsStatsUserLocalService.getOrganizationStatsUsersCount(organizationId);
182     }
183 
184     public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
185         long groupId, long userId)
186         throws com.liferay.portal.PortalException,
187             com.liferay.portal.SystemException {
188         return _blogsStatsUserLocalService.getStatsUser(groupId, userId);
189     }
190 
191     public void updateStatsUser(long groupId, long userId)
192         throws com.liferay.portal.PortalException,
193             com.liferay.portal.SystemException {
194         _blogsStatsUserLocalService.updateStatsUser(groupId, userId);
195     }
196 
197     public void updateStatsUser(long groupId, long userId,
198         java.util.Date displayDate)
199         throws com.liferay.portal.PortalException,
200             com.liferay.portal.SystemException {
201         _blogsStatsUserLocalService.updateStatsUser(groupId, userId, displayDate);
202     }
203 
204     public BlogsStatsUserLocalService getWrappedBlogsStatsUserLocalService() {
205         return _blogsStatsUserLocalService;
206     }
207 
208     private BlogsStatsUserLocalService _blogsStatsUserLocalService;
209 }