001    /**
002     * Copyright (c) 2000-2011 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            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    }