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