001
014
015 package com.liferay.ratings.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 RatingsEntryServiceWrapper implements RatingsEntryService,
030 ServiceWrapper<RatingsEntryService> {
031 public RatingsEntryServiceWrapper(RatingsEntryService ratingsEntryService) {
032 _ratingsEntryService = ratingsEntryService;
033 }
034
035 @Override
036 public com.liferay.ratings.kernel.model.RatingsEntry updateEntry(
037 java.lang.String className, long classPK, double score)
038 throws com.liferay.portal.kernel.exception.PortalException {
039 return _ratingsEntryService.updateEntry(className, classPK, score);
040 }
041
042
047 @Override
048 public java.lang.String getOSGiServiceIdentifier() {
049 return _ratingsEntryService.getOSGiServiceIdentifier();
050 }
051
052 @Override
053 public void deleteEntry(java.lang.String className, long classPK)
054 throws com.liferay.portal.kernel.exception.PortalException {
055 _ratingsEntryService.deleteEntry(className, classPK);
056 }
057
058 @Override
059 public RatingsEntryService getWrappedService() {
060 return _ratingsEntryService;
061 }
062
063 @Override
064 public void setWrappedService(RatingsEntryService ratingsEntryService) {
065 _ratingsEntryService = ratingsEntryService;
066 }
067
068 private RatingsEntryService _ratingsEntryService;
069 }