001
014
015 package com.liferay.portlet.social.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class SocialActivityAchievementLocalServiceWrapper
029 implements SocialActivityAchievementLocalService,
030 ServiceWrapper<SocialActivityAchievementLocalService> {
031 public SocialActivityAchievementLocalServiceWrapper(
032 SocialActivityAchievementLocalService socialActivityAchievementLocalService) {
033 _socialActivityAchievementLocalService = socialActivityAchievementLocalService;
034 }
035
036
043 public com.liferay.portlet.social.model.SocialActivityAchievement addSocialActivityAchievement(
044 com.liferay.portlet.social.model.SocialActivityAchievement socialActivityAchievement)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _socialActivityAchievementLocalService.addSocialActivityAchievement(socialActivityAchievement);
047 }
048
049
055 public com.liferay.portlet.social.model.SocialActivityAchievement createSocialActivityAchievement(
056 long activityAchievementId) {
057 return _socialActivityAchievementLocalService.createSocialActivityAchievement(activityAchievementId);
058 }
059
060
067 public void deleteSocialActivityAchievement(long activityAchievementId)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 _socialActivityAchievementLocalService.deleteSocialActivityAchievement(activityAchievementId);
071 }
072
073
079 public void deleteSocialActivityAchievement(
080 com.liferay.portlet.social.model.SocialActivityAchievement socialActivityAchievement)
081 throws com.liferay.portal.kernel.exception.SystemException {
082 _socialActivityAchievementLocalService.deleteSocialActivityAchievement(socialActivityAchievement);
083 }
084
085
092 @SuppressWarnings("rawtypes")
093 public java.util.List dynamicQuery(
094 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095 throws com.liferay.portal.kernel.exception.SystemException {
096 return _socialActivityAchievementLocalService.dynamicQuery(dynamicQuery);
097 }
098
099
112 @SuppressWarnings("rawtypes")
113 public java.util.List dynamicQuery(
114 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115 int end) throws com.liferay.portal.kernel.exception.SystemException {
116 return _socialActivityAchievementLocalService.dynamicQuery(dynamicQuery,
117 start, end);
118 }
119
120
134 @SuppressWarnings("rawtypes")
135 public java.util.List dynamicQuery(
136 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137 int end,
138 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _socialActivityAchievementLocalService.dynamicQuery(dynamicQuery,
141 start, end, orderByComparator);
142 }
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _socialActivityAchievementLocalService.dynamicQueryCount(dynamicQuery);
155 }
156
157 public com.liferay.portlet.social.model.SocialActivityAchievement fetchSocialActivityAchievement(
158 long activityAchievementId)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _socialActivityAchievementLocalService.fetchSocialActivityAchievement(activityAchievementId);
161 }
162
163
171 public com.liferay.portlet.social.model.SocialActivityAchievement getSocialActivityAchievement(
172 long activityAchievementId)
173 throws com.liferay.portal.kernel.exception.PortalException,
174 com.liferay.portal.kernel.exception.SystemException {
175 return _socialActivityAchievementLocalService.getSocialActivityAchievement(activityAchievementId);
176 }
177
178 public com.liferay.portal.model.PersistedModel getPersistedModel(
179 java.io.Serializable primaryKeyObj)
180 throws com.liferay.portal.kernel.exception.PortalException,
181 com.liferay.portal.kernel.exception.SystemException {
182 return _socialActivityAchievementLocalService.getPersistedModel(primaryKeyObj);
183 }
184
185
197 public java.util.List<com.liferay.portlet.social.model.SocialActivityAchievement> getSocialActivityAchievements(
198 int start, int end)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _socialActivityAchievementLocalService.getSocialActivityAchievements(start,
201 end);
202 }
203
204
210 public int getSocialActivityAchievementsCount()
211 throws com.liferay.portal.kernel.exception.SystemException {
212 return _socialActivityAchievementLocalService.getSocialActivityAchievementsCount();
213 }
214
215
222 public com.liferay.portlet.social.model.SocialActivityAchievement updateSocialActivityAchievement(
223 com.liferay.portlet.social.model.SocialActivityAchievement socialActivityAchievement)
224 throws com.liferay.portal.kernel.exception.SystemException {
225 return _socialActivityAchievementLocalService.updateSocialActivityAchievement(socialActivityAchievement);
226 }
227
228
236 public com.liferay.portlet.social.model.SocialActivityAchievement updateSocialActivityAchievement(
237 com.liferay.portlet.social.model.SocialActivityAchievement socialActivityAchievement,
238 boolean merge)
239 throws com.liferay.portal.kernel.exception.SystemException {
240 return _socialActivityAchievementLocalService.updateSocialActivityAchievement(socialActivityAchievement,
241 merge);
242 }
243
244
249 public java.lang.String getBeanIdentifier() {
250 return _socialActivityAchievementLocalService.getBeanIdentifier();
251 }
252
253
258 public void setBeanIdentifier(java.lang.String beanIdentifier) {
259 _socialActivityAchievementLocalService.setBeanIdentifier(beanIdentifier);
260 }
261
262 public void addActivityAchievement(long userId, long groupId,
263 com.liferay.portlet.social.model.SocialAchievement achievement)
264 throws com.liferay.portal.kernel.exception.PortalException,
265 com.liferay.portal.kernel.exception.SystemException {
266 _socialActivityAchievementLocalService.addActivityAchievement(userId,
267 groupId, achievement);
268 }
269
270 public com.liferay.portlet.social.model.SocialActivityAchievement fetchUserAchievement(
271 long userId, long groupId, java.lang.String name)
272 throws com.liferay.portal.kernel.exception.SystemException {
273 return _socialActivityAchievementLocalService.fetchUserAchievement(userId,
274 groupId, name);
275 }
276
277 public java.util.List<com.liferay.portlet.social.model.SocialActivityAchievement> getGroupAchievements(
278 long groupId)
279 throws com.liferay.portal.kernel.exception.SystemException {
280 return _socialActivityAchievementLocalService.getGroupAchievements(groupId);
281 }
282
283 public java.util.List<com.liferay.portlet.social.model.SocialActivityAchievement> getGroupAchievements(
284 long groupId, java.lang.String name)
285 throws com.liferay.portal.kernel.exception.SystemException {
286 return _socialActivityAchievementLocalService.getGroupAchievements(groupId,
287 name);
288 }
289
290 public int getGroupAchievementsCount(long groupId)
291 throws com.liferay.portal.kernel.exception.SystemException {
292 return _socialActivityAchievementLocalService.getGroupAchievementsCount(groupId);
293 }
294
295 public int getGroupAchievementsCount(long groupId, java.lang.String name)
296 throws com.liferay.portal.kernel.exception.SystemException {
297 return _socialActivityAchievementLocalService.getGroupAchievementsCount(groupId,
298 name);
299 }
300
301 public java.util.List<com.liferay.portlet.social.model.SocialActivityAchievement> getGroupFirstAchievements(
302 long groupId)
303 throws com.liferay.portal.kernel.exception.SystemException {
304 return _socialActivityAchievementLocalService.getGroupFirstAchievements(groupId);
305 }
306
307 public int getGroupFirstAchievementsCount(long groupId)
308 throws com.liferay.portal.kernel.exception.SystemException {
309 return _socialActivityAchievementLocalService.getGroupFirstAchievementsCount(groupId);
310 }
311
312 public int getUserAchievementCount(long userId, long groupId,
313 java.lang.String name)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 return _socialActivityAchievementLocalService.getUserAchievementCount(userId,
316 groupId, name);
317 }
318
319 public java.util.List<com.liferay.portlet.social.model.SocialActivityAchievement> getUserAchievements(
320 long userId, long groupId, java.lang.String name)
321 throws com.liferay.portal.kernel.exception.SystemException {
322 return _socialActivityAchievementLocalService.getUserAchievements(userId,
323 groupId, name);
324 }
325
326
329 public SocialActivityAchievementLocalService getWrappedSocialActivityAchievementLocalService() {
330 return _socialActivityAchievementLocalService;
331 }
332
333
336 public void setWrappedSocialActivityAchievementLocalService(
337 SocialActivityAchievementLocalService socialActivityAchievementLocalService) {
338 _socialActivityAchievementLocalService = socialActivityAchievementLocalService;
339 }
340
341 public SocialActivityAchievementLocalService getWrappedService() {
342 return _socialActivityAchievementLocalService;
343 }
344
345 public void setWrappedService(
346 SocialActivityAchievementLocalService socialActivityAchievementLocalService) {
347 _socialActivityAchievementLocalService = socialActivityAchievementLocalService;
348 }
349
350 private SocialActivityAchievementLocalService _socialActivityAchievementLocalService;
351 }