001    /**
002     * Copyright (c) 2000-2010 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    /**
019     * <p>
020     * This class is a wrapper for {@link LayoutSetService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       LayoutSetService
025     * @generated
026     */
027    public class LayoutSetServiceWrapper implements LayoutSetService {
028            public LayoutSetServiceWrapper(LayoutSetService layoutSetService) {
029                    _layoutSetService = layoutSetService;
030            }
031    
032            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
033                    java.io.File file)
034                    throws com.liferay.portal.kernel.exception.PortalException,
035                            com.liferay.portal.kernel.exception.SystemException {
036                    _layoutSetService.updateLogo(groupId, privateLayout, logo, file);
037            }
038    
039            public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
040                    boolean privateLayout, java.lang.String themeId,
041                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
045                            themeId, colorSchemeId, css, wapTheme);
046            }
047    
048            public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
049                    boolean privateLayout, java.lang.String settings)
050                    throws com.liferay.portal.kernel.exception.PortalException,
051                            com.liferay.portal.kernel.exception.SystemException {
052                    return _layoutSetService.updateSettings(groupId, privateLayout, settings);
053            }
054    
055            public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
056                    boolean privateLayout, java.lang.String virtualHost)
057                    throws com.liferay.portal.kernel.exception.PortalException,
058                            com.liferay.portal.kernel.exception.SystemException {
059                    return _layoutSetService.updateVirtualHost(groupId, privateLayout,
060                            virtualHost);
061            }
062    
063            public LayoutSetService getWrappedLayoutSetService() {
064                    return _layoutSetService;
065            }
066    
067            private LayoutSetService _layoutSetService;
068    }