001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.ratings.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link RatingsEntryService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       RatingsEntryService
026     * @generated
027     */
028    public class RatingsEntryServiceWrapper implements RatingsEntryService,
029            ServiceWrapper<RatingsEntryService> {
030            public RatingsEntryServiceWrapper(RatingsEntryService ratingsEntryService) {
031                    _ratingsEntryService = ratingsEntryService;
032            }
033    
034            public void deleteEntry(java.lang.String className, long classPK)
035                    throws com.liferay.portal.kernel.exception.PortalException,
036                            com.liferay.portal.kernel.exception.SystemException {
037                    _ratingsEntryService.deleteEntry(className, classPK);
038            }
039    
040            public com.liferay.portlet.ratings.model.RatingsEntry updateEntry(
041                    java.lang.String className, long classPK, double score)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    return _ratingsEntryService.updateEntry(className, classPK, score);
045            }
046    
047            /**
048             * @deprecated Renamed to {@link #getWrappedService}
049             */
050            public RatingsEntryService getWrappedRatingsEntryService() {
051                    return _ratingsEntryService;
052            }
053    
054            /**
055             * @deprecated Renamed to {@link #setWrappedService}
056             */
057            public void setWrappedRatingsEntryService(
058                    RatingsEntryService ratingsEntryService) {
059                    _ratingsEntryService = ratingsEntryService;
060            }
061    
062            public RatingsEntryService getWrappedService() {
063                    return _ratingsEntryService;
064            }
065    
066            public void setWrappedService(RatingsEntryService ratingsEntryService) {
067                    _ratingsEntryService = ratingsEntryService;
068            }
069    
070            private RatingsEntryService _ratingsEntryService;
071    }