1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.blogs.service;
16  
17  
18  /**
19   * <a href="BlogsStatsUserLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link BlogsStatsUserLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       BlogsStatsUserLocalService
32   * @generated
33   */
34  public class BlogsStatsUserLocalServiceWrapper
35      implements BlogsStatsUserLocalService {
36      public BlogsStatsUserLocalServiceWrapper(
37          BlogsStatsUserLocalService blogsStatsUserLocalService) {
38          _blogsStatsUserLocalService = blogsStatsUserLocalService;
39      }
40  
41      public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
42          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
43          throws com.liferay.portal.kernel.exception.SystemException {
44          return _blogsStatsUserLocalService.addBlogsStatsUser(blogsStatsUser);
45      }
46  
47      public com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
48          long statsUserId) {
49          return _blogsStatsUserLocalService.createBlogsStatsUser(statsUserId);
50      }
51  
52      public void deleteBlogsStatsUser(long statsUserId)
53          throws com.liferay.portal.kernel.exception.PortalException,
54              com.liferay.portal.kernel.exception.SystemException {
55          _blogsStatsUserLocalService.deleteBlogsStatsUser(statsUserId);
56      }
57  
58      public void deleteBlogsStatsUser(
59          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
60          throws com.liferay.portal.kernel.exception.SystemException {
61          _blogsStatsUserLocalService.deleteBlogsStatsUser(blogsStatsUser);
62      }
63  
64      public java.util.List<Object> dynamicQuery(
65          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66          throws com.liferay.portal.kernel.exception.SystemException {
67          return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery);
68      }
69  
70      public java.util.List<Object> dynamicQuery(
71          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72          int end) throws com.liferay.portal.kernel.exception.SystemException {
73          return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start, end);
74      }
75  
76      public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
77          long statsUserId)
78          throws com.liferay.portal.kernel.exception.PortalException,
79              com.liferay.portal.kernel.exception.SystemException {
80          return _blogsStatsUserLocalService.getBlogsStatsUser(statsUserId);
81      }
82  
83      public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
84          int start, int end)
85          throws com.liferay.portal.kernel.exception.SystemException {
86          return _blogsStatsUserLocalService.getBlogsStatsUsers(start, end);
87      }
88  
89      public int getBlogsStatsUsersCount()
90          throws com.liferay.portal.kernel.exception.SystemException {
91          return _blogsStatsUserLocalService.getBlogsStatsUsersCount();
92      }
93  
94      public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
95          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
96          throws com.liferay.portal.kernel.exception.SystemException {
97          return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser);
98      }
99  
100     public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
101         com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser,
102         boolean merge)
103         throws com.liferay.portal.kernel.exception.SystemException {
104         return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser,
105             merge);
106     }
107 
108     public void deleteStatsUserByGroupId(long groupId)
109         throws com.liferay.portal.kernel.exception.SystemException {
110         _blogsStatsUserLocalService.deleteStatsUserByGroupId(groupId);
111     }
112 
113     public void deleteStatsUserByUserId(long userId)
114         throws com.liferay.portal.kernel.exception.SystemException {
115         _blogsStatsUserLocalService.deleteStatsUserByUserId(userId);
116     }
117 
118     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
119         long companyId, int start, int end)
120         throws com.liferay.portal.kernel.exception.SystemException {
121         return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
122             start, end);
123     }
124 
125     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
126         long companyId, int start, int end,
127         com.liferay.portal.kernel.util.OrderByComparator obc)
128         throws com.liferay.portal.kernel.exception.SystemException {
129         return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
130             start, end, obc);
131     }
132 
133     public int getCompanyStatsUsersCount(long companyId)
134         throws com.liferay.portal.kernel.exception.SystemException {
135         return _blogsStatsUserLocalService.getCompanyStatsUsersCount(companyId);
136     }
137 
138     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
139         long groupId, int start, int end)
140         throws com.liferay.portal.kernel.exception.SystemException {
141         return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
142             end);
143     }
144 
145     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
146         long groupId, int start, int end,
147         com.liferay.portal.kernel.util.OrderByComparator obc)
148         throws com.liferay.portal.kernel.exception.SystemException {
149         return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
150             end, obc);
151     }
152 
153     public int getGroupStatsUsersCount(long groupId)
154         throws com.liferay.portal.kernel.exception.SystemException {
155         return _blogsStatsUserLocalService.getGroupStatsUsersCount(groupId);
156     }
157 
158     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
159         long organizationId, int start, int end)
160         throws com.liferay.portal.kernel.exception.SystemException {
161         return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
162             start, end);
163     }
164 
165     public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
166         long organizationId, int start, int end,
167         com.liferay.portal.kernel.util.OrderByComparator obc)
168         throws com.liferay.portal.kernel.exception.SystemException {
169         return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
170             start, end, obc);
171     }
172 
173     public int getOrganizationStatsUsersCount(long organizationId)
174         throws com.liferay.portal.kernel.exception.SystemException {
175         return _blogsStatsUserLocalService.getOrganizationStatsUsersCount(organizationId);
176     }
177 
178     public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
179         long groupId, long userId)
180         throws com.liferay.portal.kernel.exception.PortalException,
181             com.liferay.portal.kernel.exception.SystemException {
182         return _blogsStatsUserLocalService.getStatsUser(groupId, userId);
183     }
184 
185     public void updateStatsUser(long groupId, long userId)
186         throws com.liferay.portal.kernel.exception.PortalException,
187             com.liferay.portal.kernel.exception.SystemException {
188         _blogsStatsUserLocalService.updateStatsUser(groupId, userId);
189     }
190 
191     public void updateStatsUser(long groupId, long userId,
192         java.util.Date displayDate)
193         throws com.liferay.portal.kernel.exception.PortalException,
194             com.liferay.portal.kernel.exception.SystemException {
195         _blogsStatsUserLocalService.updateStatsUser(groupId, userId, displayDate);
196     }
197 
198     public BlogsStatsUserLocalService getWrappedBlogsStatsUserLocalService() {
199         return _blogsStatsUserLocalService;
200     }
201 
202     private BlogsStatsUserLocalService _blogsStatsUserLocalService;
203 }