001    /**
002     * Copyright (c) 2000-2013 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            /**
036            * Returns the Spring bean ID for this bean.
037            *
038            * @return the Spring bean ID for this bean
039            */
040            public java.lang.String getBeanIdentifier() {
041                    return _announcementsFlagService.getBeanIdentifier();
042            }
043    
044            /**
045            * Sets the Spring bean ID for this bean.
046            *
047            * @param beanIdentifier the Spring bean ID for this bean
048            */
049            public void setBeanIdentifier(java.lang.String beanIdentifier) {
050                    _announcementsFlagService.setBeanIdentifier(beanIdentifier);
051            }
052    
053            public void addFlag(long entryId, int value)
054                    throws com.liferay.portal.kernel.exception.PortalException,
055                            com.liferay.portal.kernel.exception.SystemException {
056                    _announcementsFlagService.addFlag(entryId, value);
057            }
058    
059            public void deleteFlag(long flagId)
060                    throws com.liferay.portal.kernel.exception.PortalException,
061                            com.liferay.portal.kernel.exception.SystemException {
062                    _announcementsFlagService.deleteFlag(flagId);
063            }
064    
065            public com.liferay.portlet.announcements.model.AnnouncementsFlag getFlag(
066                    long entryId, int value)
067                    throws com.liferay.portal.kernel.exception.PortalException,
068                            com.liferay.portal.kernel.exception.SystemException {
069                    return _announcementsFlagService.getFlag(entryId, value);
070            }
071    
072            /**
073             * @deprecated Renamed to {@link #getWrappedService}
074             */
075            public AnnouncementsFlagService getWrappedAnnouncementsFlagService() {
076                    return _announcementsFlagService;
077            }
078    
079            /**
080             * @deprecated Renamed to {@link #setWrappedService}
081             */
082            public void setWrappedAnnouncementsFlagService(
083                    AnnouncementsFlagService announcementsFlagService) {
084                    _announcementsFlagService = announcementsFlagService;
085            }
086    
087            public AnnouncementsFlagService getWrappedService() {
088                    return _announcementsFlagService;
089            }
090    
091            public void setWrappedService(
092                    AnnouncementsFlagService announcementsFlagService) {
093                    _announcementsFlagService = announcementsFlagService;
094            }
095    
096            private AnnouncementsFlagService _announcementsFlagService;
097    }