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  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18  
19  /**
20   * <a href="BlogsStatsUserLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
21   *
22   * <p>
23   * ServiceBuilder generated this class. Modifications in this class will be
24   * overwritten the next time is generated.
25   * </p>
26   *
27   * <p>
28   * This class provides static methods for the
29   * {@link BlogsStatsUserLocalService} bean. The static methods of
30   * this class calls the same methods of the bean instance. It's convenient to be
31   * able to just write one line to call a method on a bean instead of writing a
32   * lookup call and a method call.
33   * </p>
34   *
35   * @author    Brian Wing Shun Chan
36   * @see       BlogsStatsUserLocalService
37   * @generated
38   */
39  public class BlogsStatsUserLocalServiceUtil {
40      public static com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
41          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
42          throws com.liferay.portal.kernel.exception.SystemException {
43          return getService().addBlogsStatsUser(blogsStatsUser);
44      }
45  
46      public static com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
47          long statsUserId) {
48          return getService().createBlogsStatsUser(statsUserId);
49      }
50  
51      public static void deleteBlogsStatsUser(long statsUserId)
52          throws com.liferay.portal.kernel.exception.PortalException,
53              com.liferay.portal.kernel.exception.SystemException {
54          getService().deleteBlogsStatsUser(statsUserId);
55      }
56  
57      public static void deleteBlogsStatsUser(
58          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
59          throws com.liferay.portal.kernel.exception.SystemException {
60          getService().deleteBlogsStatsUser(blogsStatsUser);
61      }
62  
63      public static java.util.List<Object> dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.kernel.exception.SystemException {
66          return getService().dynamicQuery(dynamicQuery);
67      }
68  
69      public static java.util.List<Object> dynamicQuery(
70          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71          int end) throws com.liferay.portal.kernel.exception.SystemException {
72          return getService().dynamicQuery(dynamicQuery, start, end);
73      }
74  
75      public static com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
76          long statsUserId)
77          throws com.liferay.portal.kernel.exception.PortalException,
78              com.liferay.portal.kernel.exception.SystemException {
79          return getService().getBlogsStatsUser(statsUserId);
80      }
81  
82      public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
83          int start, int end)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return getService().getBlogsStatsUsers(start, end);
86      }
87  
88      public static int getBlogsStatsUsersCount()
89          throws com.liferay.portal.kernel.exception.SystemException {
90          return getService().getBlogsStatsUsersCount();
91      }
92  
93      public static com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
94          com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
95          throws com.liferay.portal.kernel.exception.SystemException {
96          return getService().updateBlogsStatsUser(blogsStatsUser);
97      }
98  
99      public static com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
100         com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser,
101         boolean merge)
102         throws com.liferay.portal.kernel.exception.SystemException {
103         return getService().updateBlogsStatsUser(blogsStatsUser, merge);
104     }
105 
106     public static void deleteStatsUserByGroupId(long groupId)
107         throws com.liferay.portal.kernel.exception.SystemException {
108         getService().deleteStatsUserByGroupId(groupId);
109     }
110 
111     public static void deleteStatsUserByUserId(long userId)
112         throws com.liferay.portal.kernel.exception.SystemException {
113         getService().deleteStatsUserByUserId(userId);
114     }
115 
116     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
117         long companyId, int start, int end)
118         throws com.liferay.portal.kernel.exception.SystemException {
119         return getService().getCompanyStatsUsers(companyId, start, end);
120     }
121 
122     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
123         long companyId, int start, int end,
124         com.liferay.portal.kernel.util.OrderByComparator obc)
125         throws com.liferay.portal.kernel.exception.SystemException {
126         return getService().getCompanyStatsUsers(companyId, start, end, obc);
127     }
128 
129     public static int getCompanyStatsUsersCount(long companyId)
130         throws com.liferay.portal.kernel.exception.SystemException {
131         return getService().getCompanyStatsUsersCount(companyId);
132     }
133 
134     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
135         long groupId, int start, int end)
136         throws com.liferay.portal.kernel.exception.SystemException {
137         return getService().getGroupStatsUsers(groupId, start, end);
138     }
139 
140     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
141         long groupId, int start, int end,
142         com.liferay.portal.kernel.util.OrderByComparator obc)
143         throws com.liferay.portal.kernel.exception.SystemException {
144         return getService().getGroupStatsUsers(groupId, start, end, obc);
145     }
146 
147     public static int getGroupStatsUsersCount(long groupId)
148         throws com.liferay.portal.kernel.exception.SystemException {
149         return getService().getGroupStatsUsersCount(groupId);
150     }
151 
152     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
153         long organizationId, int start, int end)
154         throws com.liferay.portal.kernel.exception.SystemException {
155         return getService().getOrganizationStatsUsers(organizationId, start, end);
156     }
157 
158     public static java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
159         long organizationId, int start, int end,
160         com.liferay.portal.kernel.util.OrderByComparator obc)
161         throws com.liferay.portal.kernel.exception.SystemException {
162         return getService()
163                    .getOrganizationStatsUsers(organizationId, start, end, obc);
164     }
165 
166     public static int getOrganizationStatsUsersCount(long organizationId)
167         throws com.liferay.portal.kernel.exception.SystemException {
168         return getService().getOrganizationStatsUsersCount(organizationId);
169     }
170 
171     public static com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
172         long groupId, long userId)
173         throws com.liferay.portal.kernel.exception.PortalException,
174             com.liferay.portal.kernel.exception.SystemException {
175         return getService().getStatsUser(groupId, userId);
176     }
177 
178     public static void updateStatsUser(long groupId, long userId)
179         throws com.liferay.portal.kernel.exception.PortalException,
180             com.liferay.portal.kernel.exception.SystemException {
181         getService().updateStatsUser(groupId, userId);
182     }
183 
184     public static void updateStatsUser(long groupId, long userId,
185         java.util.Date displayDate)
186         throws com.liferay.portal.kernel.exception.PortalException,
187             com.liferay.portal.kernel.exception.SystemException {
188         getService().updateStatsUser(groupId, userId, displayDate);
189     }
190 
191     public static BlogsStatsUserLocalService getService() {
192         if (_service == null) {
193             _service = (BlogsStatsUserLocalService)PortalBeanLocatorUtil.locate(BlogsStatsUserLocalService.class.getName());
194         }
195 
196         return _service;
197     }
198 
199     public void setService(BlogsStatsUserLocalService service) {
200         _service = service;
201     }
202 
203     private static BlogsStatsUserLocalService _service;
204 }