001
014
015 package com.liferay.portlet.social.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.service.ServiceWrapper;
020
021
028 @ProviderType
029 public class SocialRequestServiceWrapper implements SocialRequestService,
030 ServiceWrapper<SocialRequestService> {
031 public SocialRequestServiceWrapper(
032 SocialRequestService socialRequestService) {
033 _socialRequestService = socialRequestService;
034 }
035
036
041 @Override
042 public java.lang.String getBeanIdentifier() {
043 return _socialRequestService.getBeanIdentifier();
044 }
045
046
051 @Override
052 public void setBeanIdentifier(java.lang.String beanIdentifier) {
053 _socialRequestService.setBeanIdentifier(beanIdentifier);
054 }
055
056 @Override
057 public com.liferay.portlet.social.model.SocialRequest updateRequest(
058 long requestId, int status,
059 com.liferay.portal.theme.ThemeDisplay themeDisplay)
060 throws com.liferay.portal.kernel.exception.PortalException {
061 return _socialRequestService.updateRequest(requestId, status,
062 themeDisplay);
063 }
064
065
068 @Deprecated
069 public SocialRequestService getWrappedSocialRequestService() {
070 return _socialRequestService;
071 }
072
073
076 @Deprecated
077 public void setWrappedSocialRequestService(
078 SocialRequestService socialRequestService) {
079 _socialRequestService = socialRequestService;
080 }
081
082 @Override
083 public SocialRequestService getWrappedService() {
084 return _socialRequestService;
085 }
086
087 @Override
088 public void setWrappedService(SocialRequestService socialRequestService) {
089 _socialRequestService = socialRequestService;
090 }
091
092 private SocialRequestService _socialRequestService;
093 }