001
014
015 package com.liferay.portlet.social.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class SocialRequestServiceWrapper implements SocialRequestService,
029 ServiceWrapper<SocialRequestService> {
030 public SocialRequestServiceWrapper(
031 SocialRequestService socialRequestService) {
032 _socialRequestService = socialRequestService;
033 }
034
035
040 public java.lang.String getBeanIdentifier() {
041 return _socialRequestService.getBeanIdentifier();
042 }
043
044
049 public void setBeanIdentifier(java.lang.String beanIdentifier) {
050 _socialRequestService.setBeanIdentifier(beanIdentifier);
051 }
052
053 public com.liferay.portlet.social.model.SocialRequest updateRequest(
054 long requestId, int status,
055 com.liferay.portal.theme.ThemeDisplay themeDisplay)
056 throws com.liferay.portal.kernel.exception.PortalException,
057 com.liferay.portal.kernel.exception.SystemException {
058 return _socialRequestService.updateRequest(requestId, status,
059 themeDisplay);
060 }
061
062
065 public SocialRequestService getWrappedSocialRequestService() {
066 return _socialRequestService;
067 }
068
069
072 public void setWrappedSocialRequestService(
073 SocialRequestService socialRequestService) {
074 _socialRequestService = socialRequestService;
075 }
076
077 public SocialRequestService getWrappedService() {
078 return _socialRequestService;
079 }
080
081 public void setWrappedService(SocialRequestService socialRequestService) {
082 _socialRequestService = socialRequestService;
083 }
084
085 private SocialRequestService _socialRequestService;
086 }