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.announcements.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link AnnouncementsFlagService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       AnnouncementsFlagService
026     * @generated
027     */
028    public class AnnouncementsFlagServiceWrapper implements AnnouncementsFlagService,
029            ServiceWrapper<AnnouncementsFlagService> {
030            public AnnouncementsFlagServiceWrapper(
031                    AnnouncementsFlagService announcementsFlagService) {
032                    _announcementsFlagService = announcementsFlagService;
033            }
034    
035            public void addFlag(long entryId, int value)
036                    throws com.liferay.portal.kernel.exception.PortalException,
037                            com.liferay.portal.kernel.exception.SystemException {
038                    _announcementsFlagService.addFlag(entryId, value);
039            }
040    
041            public void deleteFlag(long flagId)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    _announcementsFlagService.deleteFlag(flagId);
045            }
046    
047            public com.liferay.portlet.announcements.model.AnnouncementsFlag getFlag(
048                    long entryId, int value)
049                    throws com.liferay.portal.kernel.exception.PortalException,
050                            com.liferay.portal.kernel.exception.SystemException {
051                    return _announcementsFlagService.getFlag(entryId, value);
052            }
053    
054            /**
055             * @deprecated Renamed to {@link #getWrappedService}
056             */
057            public AnnouncementsFlagService getWrappedAnnouncementsFlagService() {
058                    return _announcementsFlagService;
059            }
060    
061            /**
062             * @deprecated Renamed to {@link #setWrappedService}
063             */
064            public void setWrappedAnnouncementsFlagService(
065                    AnnouncementsFlagService announcementsFlagService) {
066                    _announcementsFlagService = announcementsFlagService;
067            }
068    
069            public AnnouncementsFlagService getWrappedService() {
070                    return _announcementsFlagService;
071            }
072    
073            public void setWrappedService(
074                    AnnouncementsFlagService announcementsFlagService) {
075                    _announcementsFlagService = announcementsFlagService;
076            }
077    
078            private AnnouncementsFlagService _announcementsFlagService;
079    }