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
040 @Override
041 public java.lang.String getBeanIdentifier() {
042 return _ratingsEntryService.getBeanIdentifier();
043 }
044
045
050 @Override
051 public void setBeanIdentifier(java.lang.String beanIdentifier) {
052 _ratingsEntryService.setBeanIdentifier(beanIdentifier);
053 }
054
055 @Override
056 public void deleteEntry(java.lang.String className, long classPK)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException {
059 _ratingsEntryService.deleteEntry(className, classPK);
060 }
061
062 @Override
063 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
064 java.lang.String className, long classPK, double score)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 return _ratingsEntryService.updateEntry(className, classPK, score);
068 }
069
070
073 public RatingsEntryService getWrappedRatingsEntryService() {
074 return _ratingsEntryService;
075 }
076
077
080 public void setWrappedRatingsEntryService(
081 RatingsEntryService ratingsEntryService) {
082 _ratingsEntryService = ratingsEntryService;
083 }
084
085 @Override
086 public RatingsEntryService getWrappedService() {
087 return _ratingsEntryService;
088 }
089
090 @Override
091 public void setWrappedService(RatingsEntryService ratingsEntryService) {
092 _ratingsEntryService = ratingsEntryService;
093 }
094
095 private RatingsEntryService _ratingsEntryService;
096 }