1
14
15 package com.liferay.portlet.social.service;
16
17
18
34 public class SocialRequestInterpreterLocalServiceWrapper
35 implements SocialRequestInterpreterLocalService {
36 public SocialRequestInterpreterLocalServiceWrapper(
37 SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
38 _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
39 }
40
41 public void addRequestInterpreter(
42 com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
43 _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
44 }
45
46 public void deleteRequestInterpreter(
47 com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
48 _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
49 }
50
51 public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
52 com.liferay.portlet.social.model.SocialRequest request,
53 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
54 return _socialRequestInterpreterLocalService.interpret(request,
55 themeDisplay);
56 }
57
58 public void processConfirmation(
59 com.liferay.portlet.social.model.SocialRequest request,
60 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
61 _socialRequestInterpreterLocalService.processConfirmation(request,
62 themeDisplay);
63 }
64
65 public void processRejection(
66 com.liferay.portlet.social.model.SocialRequest request,
67 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
68 _socialRequestInterpreterLocalService.processRejection(request,
69 themeDisplay);
70 }
71
72 public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
73 return _socialRequestInterpreterLocalService;
74 }
75
76 private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
77 }