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