001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link LayoutSetService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       LayoutSetService
024     * @generated
025     */
026    public class LayoutSetServiceWrapper implements LayoutSetService,
027            ServiceWrapper<LayoutSetService> {
028            public LayoutSetServiceWrapper(LayoutSetService layoutSetService) {
029                    _layoutSetService = layoutSetService;
030            }
031    
032            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
033                    java.io.InputStream inputStream)
034                    throws com.liferay.portal.kernel.exception.PortalException,
035                            com.liferay.portal.kernel.exception.SystemException {
036                    _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream);
037            }
038    
039            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
040                    java.io.InputStream inputStream, boolean cleanUpStream)
041                    throws com.liferay.portal.kernel.exception.PortalException,
042                            com.liferay.portal.kernel.exception.SystemException {
043                    _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream,
044                            cleanUpStream);
045            }
046    
047            public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
048                    boolean privateLayout, java.lang.String themeId,
049                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
050                    throws com.liferay.portal.kernel.exception.PortalException,
051                            com.liferay.portal.kernel.exception.SystemException {
052                    return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
053                            themeId, colorSchemeId, css, wapTheme);
054            }
055    
056            public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
057                    boolean privateLayout, java.lang.String settings)
058                    throws com.liferay.portal.kernel.exception.PortalException,
059                            com.liferay.portal.kernel.exception.SystemException {
060                    return _layoutSetService.updateSettings(groupId, privateLayout, settings);
061            }
062    
063            public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
064                    boolean privateLayout, java.lang.String virtualHost)
065                    throws com.liferay.portal.kernel.exception.PortalException,
066                            com.liferay.portal.kernel.exception.SystemException {
067                    return _layoutSetService.updateVirtualHost(groupId, privateLayout,
068                            virtualHost);
069            }
070    
071            /**
072             * @deprecated Renamed to {@link #getWrappedService}
073             */
074            public LayoutSetService getWrappedLayoutSetService() {
075                    return _layoutSetService;
076            }
077    
078            /**
079             * @deprecated Renamed to {@link #setWrappedService}
080             */
081            public void setWrappedLayoutSetService(LayoutSetService layoutSetService) {
082                    _layoutSetService = layoutSetService;
083            }
084    
085            public LayoutSetService getWrappedService() {
086                    return _layoutSetService;
087            }
088    
089            public void setWrappedService(LayoutSetService layoutSetService) {
090                    _layoutSetService = layoutSetService;
091            }
092    
093            private LayoutSetService _layoutSetService;
094    }