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