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.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 updateLayoutSetPrototypeLinkEnabled(long groupId,
033                    boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
034                    throws com.liferay.portal.kernel.exception.PortalException,
035                            com.liferay.portal.kernel.exception.SystemException {
036                    _layoutSetService.updateLayoutSetPrototypeLinkEnabled(groupId,
037                            privateLayout, layoutSetPrototypeLinkEnabled);
038            }
039    
040            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
041                    java.io.InputStream inputStream)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream);
045            }
046    
047            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
048                    java.io.InputStream inputStream, boolean cleanUpStream)
049                    throws com.liferay.portal.kernel.exception.PortalException,
050                            com.liferay.portal.kernel.exception.SystemException {
051                    _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream,
052                            cleanUpStream);
053            }
054    
055            public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
056                    boolean privateLayout, java.lang.String themeId,
057                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
058                    throws com.liferay.portal.kernel.exception.PortalException,
059                            com.liferay.portal.kernel.exception.SystemException {
060                    return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
061                            themeId, colorSchemeId, css, wapTheme);
062            }
063    
064            public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
065                    boolean privateLayout, java.lang.String settings)
066                    throws com.liferay.portal.kernel.exception.PortalException,
067                            com.liferay.portal.kernel.exception.SystemException {
068                    return _layoutSetService.updateSettings(groupId, privateLayout, settings);
069            }
070    
071            public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
072                    boolean privateLayout, java.lang.String virtualHost)
073                    throws com.liferay.portal.kernel.exception.PortalException,
074                            com.liferay.portal.kernel.exception.SystemException {
075                    return _layoutSetService.updateVirtualHost(groupId, privateLayout,
076                            virtualHost);
077            }
078    
079            /**
080             * @deprecated Renamed to {@link #getWrappedService}
081             */
082            public LayoutSetService getWrappedLayoutSetService() {
083                    return _layoutSetService;
084            }
085    
086            /**
087             * @deprecated Renamed to {@link #setWrappedService}
088             */
089            public void setWrappedLayoutSetService(LayoutSetService layoutSetService) {
090                    _layoutSetService = layoutSetService;
091            }
092    
093            public LayoutSetService getWrappedService() {
094                    return _layoutSetService;
095            }
096    
097            public void setWrappedService(LayoutSetService layoutSetService) {
098                    _layoutSetService = layoutSetService;
099            }
100    
101            private LayoutSetService _layoutSetService;
102    }