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.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link PluginSettingService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       PluginSettingService
024     * @generated
025     */
026    public class PluginSettingServiceWrapper implements PluginSettingService,
027            ServiceWrapper<PluginSettingService> {
028            public PluginSettingServiceWrapper(
029                    PluginSettingService pluginSettingService) {
030                    _pluginSettingService = pluginSettingService;
031            }
032    
033            /**
034            * Returns the Spring bean ID for this bean.
035            *
036            * @return the Spring bean ID for this bean
037            */
038            public java.lang.String getBeanIdentifier() {
039                    return _pluginSettingService.getBeanIdentifier();
040            }
041    
042            /**
043            * Sets the Spring bean ID for this bean.
044            *
045            * @param beanIdentifier the Spring bean ID for this bean
046            */
047            public void setBeanIdentifier(java.lang.String beanIdentifier) {
048                    _pluginSettingService.setBeanIdentifier(beanIdentifier);
049            }
050    
051            public com.liferay.portal.model.PluginSetting updatePluginSetting(
052                    long companyId, java.lang.String pluginId, java.lang.String pluginType,
053                    java.lang.String roles, boolean active)
054                    throws com.liferay.portal.kernel.exception.PortalException,
055                            com.liferay.portal.kernel.exception.SystemException {
056                    return _pluginSettingService.updatePluginSetting(companyId, pluginId,
057                            pluginType, roles, active);
058            }
059    
060            /**
061             * @deprecated Renamed to {@link #getWrappedService}
062             */
063            public PluginSettingService getWrappedPluginSettingService() {
064                    return _pluginSettingService;
065            }
066    
067            /**
068             * @deprecated Renamed to {@link #setWrappedService}
069             */
070            public void setWrappedPluginSettingService(
071                    PluginSettingService pluginSettingService) {
072                    _pluginSettingService = pluginSettingService;
073            }
074    
075            public PluginSettingService getWrappedService() {
076                    return _pluginSettingService;
077            }
078    
079            public void setWrappedService(PluginSettingService pluginSettingService) {
080                    _pluginSettingService = pluginSettingService;
081            }
082    
083            private PluginSettingService _pluginSettingService;
084    }