001
014
015 package com.liferay.portlet.social.service;
016
017
026 public class SocialRequestInterpreterLocalServiceWrapper
027 implements SocialRequestInterpreterLocalService {
028 public SocialRequestInterpreterLocalServiceWrapper(
029 SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
030 _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
031 }
032
033 public void addRequestInterpreter(
034 com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
035 _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
036 }
037
038 public void deleteRequestInterpreter(
039 com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
040 _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
041 }
042
043 public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
044 com.liferay.portlet.social.model.SocialRequest request,
045 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
046 return _socialRequestInterpreterLocalService.interpret(request,
047 themeDisplay);
048 }
049
050 public void processConfirmation(
051 com.liferay.portlet.social.model.SocialRequest request,
052 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
053 _socialRequestInterpreterLocalService.processConfirmation(request,
054 themeDisplay);
055 }
056
057 public void processRejection(
058 com.liferay.portlet.social.model.SocialRequest request,
059 com.liferay.portal.theme.ThemeDisplay themeDisplay) {
060 _socialRequestInterpreterLocalService.processRejection(request,
061 themeDisplay);
062 }
063
064 public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
065 return _socialRequestInterpreterLocalService;
066 }
067
068 private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
069 }