001
014
015 package com.liferay.portlet.ratings.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.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 void deleteEntry(java.lang.String className, long classPK)
037 throws com.liferay.portal.kernel.exception.PortalException {
038 _ratingsEntryService.deleteEntry(className, classPK);
039 }
040
041
046 @Override
047 public java.lang.String getOSGiServiceIdentifier() {
048 return _ratingsEntryService.getOSGiServiceIdentifier();
049 }
050
051 @Override
052 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
053 java.lang.String className, long classPK, double score)
054 throws com.liferay.portal.kernel.exception.PortalException {
055 return _ratingsEntryService.updateEntry(className, classPK, score);
056 }
057
058
061 @Deprecated
062 public RatingsEntryService getWrappedRatingsEntryService() {
063 return _ratingsEntryService;
064 }
065
066
069 @Deprecated
070 public void setWrappedRatingsEntryService(
071 RatingsEntryService ratingsEntryService) {
072 _ratingsEntryService = ratingsEntryService;
073 }
074
075 @Override
076 public RatingsEntryService getWrappedService() {
077 return _ratingsEntryService;
078 }
079
080 @Override
081 public void setWrappedService(RatingsEntryService ratingsEntryService) {
082 _ratingsEntryService = ratingsEntryService;
083 }
084
085 private RatingsEntryService _ratingsEntryService;
086 }