001    /**
002     * Copyright (c) 2000-2010 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            public LayoutSetServiceWrapper(LayoutSetService layoutSetService) {
028                    _layoutSetService = layoutSetService;
029            }
030    
031            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
032                    java.io.File file)
033                    throws com.liferay.portal.kernel.exception.PortalException,
034                            com.liferay.portal.kernel.exception.SystemException {
035                    _layoutSetService.updateLogo(groupId, privateLayout, logo, file);
036            }
037    
038            public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
039                    boolean privateLayout, java.lang.String themeId,
040                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
041                    throws com.liferay.portal.kernel.exception.PortalException,
042                            com.liferay.portal.kernel.exception.SystemException {
043                    return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
044                            themeId, colorSchemeId, css, wapTheme);
045            }
046    
047            public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
048                    boolean privateLayout, java.lang.String settings)
049                    throws com.liferay.portal.kernel.exception.PortalException,
050                            com.liferay.portal.kernel.exception.SystemException {
051                    return _layoutSetService.updateSettings(groupId, privateLayout, settings);
052            }
053    
054            public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
055                    boolean privateLayout, java.lang.String virtualHost)
056                    throws com.liferay.portal.kernel.exception.PortalException,
057                            com.liferay.portal.kernel.exception.SystemException {
058                    return _layoutSetService.updateVirtualHost(groupId, privateLayout,
059                            virtualHost);
060            }
061    
062            public LayoutSetService getWrappedLayoutSetService() {
063                    return _layoutSetService;
064            }
065    
066            private LayoutSetService _layoutSetService;
067    }