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