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 getOSGiServiceIdentifier() {
043 return _socialRequestService.getOSGiServiceIdentifier();
044 }
045
046 @Override
047 public com.liferay.portlet.social.model.SocialRequest updateRequest(
048 long requestId, int status,
049 com.liferay.portal.theme.ThemeDisplay themeDisplay)
050 throws com.liferay.portal.kernel.exception.PortalException {
051 return _socialRequestService.updateRequest(requestId, status,
052 themeDisplay);
053 }
054
055
058 @Deprecated
059 public SocialRequestService getWrappedSocialRequestService() {
060 return _socialRequestService;
061 }
062
063
066 @Deprecated
067 public void setWrappedSocialRequestService(
068 SocialRequestService socialRequestService) {
069 _socialRequestService = socialRequestService;
070 }
071
072 @Override
073 public SocialRequestService getWrappedService() {
074 return _socialRequestService;
075 }
076
077 @Override
078 public void setWrappedService(SocialRequestService socialRequestService) {
079 _socialRequestService = socialRequestService;
080 }
081
082 private SocialRequestService _socialRequestService;
083 }