001
014
015 package com.liferay.social.kernel.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.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 @Override
037 public com.liferay.social.kernel.model.SocialRequest updateRequest(
038 long requestId, int status,
039 com.liferay.portal.kernel.theme.ThemeDisplay themeDisplay)
040 throws com.liferay.portal.kernel.exception.PortalException {
041 return _socialRequestService.updateRequest(requestId, status,
042 themeDisplay);
043 }
044
045
050 @Override
051 public java.lang.String getOSGiServiceIdentifier() {
052 return _socialRequestService.getOSGiServiceIdentifier();
053 }
054
055 @Override
056 public SocialRequestService getWrappedService() {
057 return _socialRequestService;
058 }
059
060 @Override
061 public void setWrappedService(SocialRequestService socialRequestService) {
062 _socialRequestService = socialRequestService;
063 }
064
065 private SocialRequestService _socialRequestService;
066 }