001
014
015 package com.liferay.portlet.ratings.service;
016
017
018
027 public class RatingsEntryServiceWrapper implements RatingsEntryService {
028 public RatingsEntryServiceWrapper(RatingsEntryService ratingsEntryService) {
029 _ratingsEntryService = ratingsEntryService;
030 }
031
032 public void deleteEntry(java.lang.String className, long classPK)
033 throws com.liferay.portal.kernel.exception.PortalException,
034 com.liferay.portal.kernel.exception.SystemException {
035 _ratingsEntryService.deleteEntry(className, classPK);
036 }
037
038 public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
039 java.lang.String className, long classPK, double score)
040 throws com.liferay.portal.kernel.exception.PortalException,
041 com.liferay.portal.kernel.exception.SystemException {
042 return _ratingsEntryService.updateEntry(className, classPK, score);
043 }
044
045 public RatingsEntryService getWrappedRatingsEntryService() {
046 return _ratingsEntryService;
047 }
048
049 private RatingsEntryService _ratingsEntryService;
050 }