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 getBeanIdentifier() {
048 return _ratingsEntryService.getBeanIdentifier();
049 }
050
051
056 @Override
057 public void setBeanIdentifier(java.lang.String beanIdentifier) {
058 _ratingsEntryService.setBeanIdentifier(beanIdentifier);
059 }
060
061 @Override
062 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
063 java.lang.String className, long classPK, double score)
064 throws com.liferay.portal.kernel.exception.PortalException {
065 return _ratingsEntryService.updateEntry(className, classPK, score);
066 }
067
068
071 @Deprecated
072 public RatingsEntryService getWrappedRatingsEntryService() {
073 return _ratingsEntryService;
074 }
075
076
079 @Deprecated
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 }