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     * <p>
019     * This class is a wrapper for {@link LayoutSetLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       LayoutSetLocalService
024     * @generated
025     */
026    public class LayoutSetLocalServiceWrapper implements LayoutSetLocalService {
027            public LayoutSetLocalServiceWrapper(
028                    LayoutSetLocalService layoutSetLocalService) {
029                    _layoutSetLocalService = layoutSetLocalService;
030            }
031    
032            public com.liferay.portal.model.LayoutSet addLayoutSet(
033                    com.liferay.portal.model.LayoutSet layoutSet)
034                    throws com.liferay.portal.kernel.exception.SystemException {
035                    return _layoutSetLocalService.addLayoutSet(layoutSet);
036            }
037    
038            public com.liferay.portal.model.LayoutSet createLayoutSet(long layoutSetId) {
039                    return _layoutSetLocalService.createLayoutSet(layoutSetId);
040            }
041    
042            public void deleteLayoutSet(long layoutSetId)
043                    throws com.liferay.portal.kernel.exception.PortalException,
044                            com.liferay.portal.kernel.exception.SystemException {
045                    _layoutSetLocalService.deleteLayoutSet(layoutSetId);
046            }
047    
048            public void deleteLayoutSet(com.liferay.portal.model.LayoutSet layoutSet)
049                    throws com.liferay.portal.kernel.exception.SystemException {
050                    _layoutSetLocalService.deleteLayoutSet(layoutSet);
051            }
052    
053            @SuppressWarnings("unchecked")
054            public java.util.List dynamicQuery(
055                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
056                    throws com.liferay.portal.kernel.exception.SystemException {
057                    return _layoutSetLocalService.dynamicQuery(dynamicQuery);
058            }
059    
060            @SuppressWarnings("unchecked")
061            public java.util.List dynamicQuery(
062                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
063                    int end) throws com.liferay.portal.kernel.exception.SystemException {
064                    return _layoutSetLocalService.dynamicQuery(dynamicQuery, start, end);
065            }
066    
067            @SuppressWarnings("unchecked")
068            public java.util.List dynamicQuery(
069                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
070                    int end,
071                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
072                    throws com.liferay.portal.kernel.exception.SystemException {
073                    return _layoutSetLocalService.dynamicQuery(dynamicQuery, start, end,
074                            orderByComparator);
075            }
076    
077            public long dynamicQueryCount(
078                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
079                    throws com.liferay.portal.kernel.exception.SystemException {
080                    return _layoutSetLocalService.dynamicQueryCount(dynamicQuery);
081            }
082    
083            public com.liferay.portal.model.LayoutSet getLayoutSet(long layoutSetId)
084                    throws com.liferay.portal.kernel.exception.PortalException,
085                            com.liferay.portal.kernel.exception.SystemException {
086                    return _layoutSetLocalService.getLayoutSet(layoutSetId);
087            }
088    
089            public java.util.List<com.liferay.portal.model.LayoutSet> getLayoutSets(
090                    int start, int end)
091                    throws com.liferay.portal.kernel.exception.SystemException {
092                    return _layoutSetLocalService.getLayoutSets(start, end);
093            }
094    
095            public int getLayoutSetsCount()
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return _layoutSetLocalService.getLayoutSetsCount();
098            }
099    
100            public com.liferay.portal.model.LayoutSet updateLayoutSet(
101                    com.liferay.portal.model.LayoutSet layoutSet)
102                    throws com.liferay.portal.kernel.exception.SystemException {
103                    return _layoutSetLocalService.updateLayoutSet(layoutSet);
104            }
105    
106            public com.liferay.portal.model.LayoutSet updateLayoutSet(
107                    com.liferay.portal.model.LayoutSet layoutSet, boolean merge)
108                    throws com.liferay.portal.kernel.exception.SystemException {
109                    return _layoutSetLocalService.updateLayoutSet(layoutSet, merge);
110            }
111    
112            public com.liferay.portal.model.LayoutSet addLayoutSet(long groupId,
113                    boolean privateLayout)
114                    throws com.liferay.portal.kernel.exception.PortalException,
115                            com.liferay.portal.kernel.exception.SystemException {
116                    return _layoutSetLocalService.addLayoutSet(groupId, privateLayout);
117            }
118    
119            public void deleteLayoutSet(long groupId, boolean privateLayout)
120                    throws com.liferay.portal.kernel.exception.PortalException,
121                            com.liferay.portal.kernel.exception.SystemException {
122                    _layoutSetLocalService.deleteLayoutSet(groupId, privateLayout);
123            }
124    
125            public com.liferay.portal.model.LayoutSet getLayoutSet(long groupId,
126                    boolean privateLayout)
127                    throws com.liferay.portal.kernel.exception.PortalException,
128                            com.liferay.portal.kernel.exception.SystemException {
129                    return _layoutSetLocalService.getLayoutSet(groupId, privateLayout);
130            }
131    
132            public com.liferay.portal.model.LayoutSet getLayoutSet(
133                    java.lang.String virtualHost)
134                    throws com.liferay.portal.kernel.exception.PortalException,
135                            com.liferay.portal.kernel.exception.SystemException {
136                    return _layoutSetLocalService.getLayoutSet(virtualHost);
137            }
138    
139            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
140                    java.io.File file)
141                    throws com.liferay.portal.kernel.exception.PortalException,
142                            com.liferay.portal.kernel.exception.SystemException {
143                    _layoutSetLocalService.updateLogo(groupId, privateLayout, logo, file);
144            }
145    
146            public void updateLogo(long groupId, boolean privateLayout, boolean logo,
147                    java.io.InputStream is)
148                    throws com.liferay.portal.kernel.exception.PortalException,
149                            com.liferay.portal.kernel.exception.SystemException {
150                    _layoutSetLocalService.updateLogo(groupId, privateLayout, logo, is);
151            }
152    
153            public void updateLookAndFeel(long groupId, java.lang.String themeId,
154                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
155                    throws com.liferay.portal.kernel.exception.PortalException,
156                            com.liferay.portal.kernel.exception.SystemException {
157                    _layoutSetLocalService.updateLookAndFeel(groupId, themeId,
158                            colorSchemeId, css, wapTheme);
159            }
160    
161            public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
162                    boolean privateLayout, java.lang.String themeId,
163                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
164                    throws com.liferay.portal.kernel.exception.PortalException,
165                            com.liferay.portal.kernel.exception.SystemException {
166                    return _layoutSetLocalService.updateLookAndFeel(groupId, privateLayout,
167                            themeId, colorSchemeId, css, wapTheme);
168            }
169    
170            public com.liferay.portal.model.LayoutSet updatePageCount(long groupId,
171                    boolean privateLayout)
172                    throws com.liferay.portal.kernel.exception.PortalException,
173                            com.liferay.portal.kernel.exception.SystemException {
174                    return _layoutSetLocalService.updatePageCount(groupId, privateLayout);
175            }
176    
177            public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
178                    boolean privateLayout, java.lang.String settings)
179                    throws com.liferay.portal.kernel.exception.PortalException,
180                            com.liferay.portal.kernel.exception.SystemException {
181                    return _layoutSetLocalService.updateSettings(groupId, privateLayout,
182                            settings);
183            }
184    
185            public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
186                    boolean privateLayout, java.lang.String virtualHost)
187                    throws com.liferay.portal.kernel.exception.PortalException,
188                            com.liferay.portal.kernel.exception.SystemException {
189                    return _layoutSetLocalService.updateVirtualHost(groupId, privateLayout,
190                            virtualHost);
191            }
192    
193            public LayoutSetLocalService getWrappedLayoutSetLocalService() {
194                    return _layoutSetLocalService;
195            }
196    
197            private LayoutSetLocalService _layoutSetLocalService;
198    }