001
014
015 package com.liferay.portlet.ratings.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class RatingsEntryServiceWrapper implements RatingsEntryService,
027 ServiceWrapper<RatingsEntryService> {
028 public RatingsEntryServiceWrapper(RatingsEntryService ratingsEntryService) {
029 _ratingsEntryService = ratingsEntryService;
030 }
031
032
037 @Override
038 public java.lang.String getBeanIdentifier() {
039 return _ratingsEntryService.getBeanIdentifier();
040 }
041
042
047 @Override
048 public void setBeanIdentifier(java.lang.String beanIdentifier) {
049 _ratingsEntryService.setBeanIdentifier(beanIdentifier);
050 }
051
052 @Override
053 public void deleteEntry(java.lang.String className, long classPK)
054 throws com.liferay.portal.kernel.exception.PortalException,
055 com.liferay.portal.kernel.exception.SystemException {
056 _ratingsEntryService.deleteEntry(className, classPK);
057 }
058
059 @Override
060 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
061 java.lang.String className, long classPK, double score)
062 throws com.liferay.portal.kernel.exception.PortalException,
063 com.liferay.portal.kernel.exception.SystemException {
064 return _ratingsEntryService.updateEntry(className, classPK, score);
065 }
066
067
070 public RatingsEntryService getWrappedRatingsEntryService() {
071 return _ratingsEntryService;
072 }
073
074
077 public void setWrappedRatingsEntryService(
078 RatingsEntryService ratingsEntryService) {
079 _ratingsEntryService = ratingsEntryService;
080 }
081
082 @Override
083 public RatingsEntryService getWrappedService() {
084 return _ratingsEntryService;
085 }
086
087 @Override
088 public void setWrappedService(RatingsEntryService ratingsEntryService) {
089 _ratingsEntryService = ratingsEntryService;
090 }
091
092 private RatingsEntryService _ratingsEntryService;
093 }