1
14
15 package com.liferay.portlet.blogs.service;
16
17
33 public class BlogsStatsUserLocalServiceWrapper
34 implements BlogsStatsUserLocalService {
35 public BlogsStatsUserLocalServiceWrapper(
36 BlogsStatsUserLocalService blogsStatsUserLocalService) {
37 _blogsStatsUserLocalService = blogsStatsUserLocalService;
38 }
39
40 public com.liferay.portlet.blogs.model.BlogsStatsUser addBlogsStatsUser(
41 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
42 throws com.liferay.portal.SystemException {
43 return _blogsStatsUserLocalService.addBlogsStatsUser(blogsStatsUser);
44 }
45
46 public com.liferay.portlet.blogs.model.BlogsStatsUser createBlogsStatsUser(
47 long statsUserId) {
48 return _blogsStatsUserLocalService.createBlogsStatsUser(statsUserId);
49 }
50
51 public void deleteBlogsStatsUser(long statsUserId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _blogsStatsUserLocalService.deleteBlogsStatsUser(statsUserId);
55 }
56
57 public void deleteBlogsStatsUser(
58 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
59 throws com.liferay.portal.SystemException {
60 _blogsStatsUserLocalService.deleteBlogsStatsUser(blogsStatsUser);
61 }
62
63 @SuppressWarnings("rawtypes")
64 public java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.SystemException {
67 return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("rawtypes")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.SystemException {
74 return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start, end);
75 }
76
77 @SuppressWarnings("rawtypes")
78 public java.util.List dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end,
81 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82 throws com.liferay.portal.SystemException {
83 return _blogsStatsUserLocalService.dynamicQuery(dynamicQuery, start,
84 end, orderByComparator);
85 }
86
87 public int dynamicQueryCount(
88 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
89 throws com.liferay.portal.SystemException {
90 return _blogsStatsUserLocalService.dynamicQueryCount(dynamicQuery);
91 }
92
93 public com.liferay.portlet.blogs.model.BlogsStatsUser getBlogsStatsUser(
94 long statsUserId)
95 throws com.liferay.portal.PortalException,
96 com.liferay.portal.SystemException {
97 return _blogsStatsUserLocalService.getBlogsStatsUser(statsUserId);
98 }
99
100 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getBlogsStatsUsers(
101 int start, int end) throws com.liferay.portal.SystemException {
102 return _blogsStatsUserLocalService.getBlogsStatsUsers(start, end);
103 }
104
105 public int getBlogsStatsUsersCount()
106 throws com.liferay.portal.SystemException {
107 return _blogsStatsUserLocalService.getBlogsStatsUsersCount();
108 }
109
110 public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
111 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser)
112 throws com.liferay.portal.SystemException {
113 return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser);
114 }
115
116 public com.liferay.portlet.blogs.model.BlogsStatsUser updateBlogsStatsUser(
117 com.liferay.portlet.blogs.model.BlogsStatsUser blogsStatsUser,
118 boolean merge) throws com.liferay.portal.SystemException {
119 return _blogsStatsUserLocalService.updateBlogsStatsUser(blogsStatsUser,
120 merge);
121 }
122
123 public void deleteStatsUserByGroupId(long groupId)
124 throws com.liferay.portal.SystemException {
125 _blogsStatsUserLocalService.deleteStatsUserByGroupId(groupId);
126 }
127
128 public void deleteStatsUserByUserId(long userId)
129 throws com.liferay.portal.SystemException {
130 _blogsStatsUserLocalService.deleteStatsUserByUserId(userId);
131 }
132
133 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
134 long companyId, int start, int end)
135 throws com.liferay.portal.SystemException {
136 return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
137 start, end);
138 }
139
140 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getCompanyStatsUsers(
141 long companyId, int start, int end,
142 com.liferay.portal.kernel.util.OrderByComparator obc)
143 throws com.liferay.portal.SystemException {
144 return _blogsStatsUserLocalService.getCompanyStatsUsers(companyId,
145 start, end, obc);
146 }
147
148 public int getCompanyStatsUsersCount(long companyId)
149 throws com.liferay.portal.SystemException {
150 return _blogsStatsUserLocalService.getCompanyStatsUsersCount(companyId);
151 }
152
153 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupsStatsUsers(
154 long companyId, long groupId, int start, int end)
155 throws com.liferay.portal.SystemException {
156 return _blogsStatsUserLocalService.getGroupsStatsUsers(companyId,
157 groupId, start, end);
158 }
159
160 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
161 long groupId, int start, int end)
162 throws com.liferay.portal.SystemException {
163 return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
164 end);
165 }
166
167 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getGroupStatsUsers(
168 long groupId, int start, int end,
169 com.liferay.portal.kernel.util.OrderByComparator obc)
170 throws com.liferay.portal.SystemException {
171 return _blogsStatsUserLocalService.getGroupStatsUsers(groupId, start,
172 end, obc);
173 }
174
175 public int getGroupStatsUsersCount(long groupId)
176 throws com.liferay.portal.SystemException {
177 return _blogsStatsUserLocalService.getGroupStatsUsersCount(groupId);
178 }
179
180 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
181 long organizationId, int start, int end)
182 throws com.liferay.portal.SystemException {
183 return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
184 start, end);
185 }
186
187 public java.util.List<com.liferay.portlet.blogs.model.BlogsStatsUser> getOrganizationStatsUsers(
188 long organizationId, int start, int end,
189 com.liferay.portal.kernel.util.OrderByComparator obc)
190 throws com.liferay.portal.SystemException {
191 return _blogsStatsUserLocalService.getOrganizationStatsUsers(organizationId,
192 start, end, obc);
193 }
194
195 public int getOrganizationStatsUsersCount(long organizationId)
196 throws com.liferay.portal.SystemException {
197 return _blogsStatsUserLocalService.getOrganizationStatsUsersCount(organizationId);
198 }
199
200 public com.liferay.portlet.blogs.model.BlogsStatsUser getStatsUser(
201 long groupId, long userId)
202 throws com.liferay.portal.PortalException,
203 com.liferay.portal.SystemException {
204 return _blogsStatsUserLocalService.getStatsUser(groupId, userId);
205 }
206
207 public void updateStatsUser(long groupId, long userId)
208 throws com.liferay.portal.PortalException,
209 com.liferay.portal.SystemException {
210 _blogsStatsUserLocalService.updateStatsUser(groupId, userId);
211 }
212
213 public void updateStatsUser(long groupId, long userId,
214 java.util.Date displayDate)
215 throws com.liferay.portal.PortalException,
216 com.liferay.portal.SystemException {
217 _blogsStatsUserLocalService.updateStatsUser(groupId, userId, displayDate);
218 }
219
220 public BlogsStatsUserLocalService getWrappedBlogsStatsUserLocalService() {
221 return _blogsStatsUserLocalService;
222 }
223
224 private BlogsStatsUserLocalService _blogsStatsUserLocalService;
225 }