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 ThemeLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       ThemeLocalService
024     * @generated
025     */
026    public class ThemeLocalServiceWrapper implements ThemeLocalService {
027            public ThemeLocalServiceWrapper(ThemeLocalService themeLocalService) {
028                    _themeLocalService = themeLocalService;
029            }
030    
031            public com.liferay.portal.model.ColorScheme getColorScheme(long companyId,
032                    java.lang.String themeId, java.lang.String colorSchemeId,
033                    boolean wapTheme)
034                    throws com.liferay.portal.kernel.exception.SystemException {
035                    return _themeLocalService.getColorScheme(companyId, themeId,
036                            colorSchemeId, wapTheme);
037            }
038    
039            public com.liferay.portal.model.Theme getTheme(long companyId,
040                    java.lang.String themeId, boolean wapTheme)
041                    throws com.liferay.portal.kernel.exception.SystemException {
042                    return _themeLocalService.getTheme(companyId, themeId, wapTheme);
043            }
044    
045            public java.util.List<com.liferay.portal.model.Theme> getThemes(
046                    long companyId) {
047                    return _themeLocalService.getThemes(companyId);
048            }
049    
050            public java.util.List<com.liferay.portal.model.Theme> getThemes(
051                    long companyId, long groupId, long userId, boolean wapTheme)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    return _themeLocalService.getThemes(companyId, groupId, userId, wapTheme);
054            }
055    
056            public java.util.List<com.liferay.portal.model.Theme> getWARThemes() {
057                    return _themeLocalService.getWARThemes();
058            }
059    
060            public java.util.List<java.lang.String> init(
061                    javax.servlet.ServletContext servletContext,
062                    java.lang.String themesPath, boolean loadFromServletContext,
063                    java.lang.String[] xmls,
064                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
065                    return _themeLocalService.init(servletContext, themesPath,
066                            loadFromServletContext, xmls, pluginPackage);
067            }
068    
069            public java.util.List<java.lang.String> init(
070                    java.lang.String servletContextName,
071                    javax.servlet.ServletContext servletContext,
072                    java.lang.String themesPath, boolean loadFromServletContext,
073                    java.lang.String[] xmls,
074                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
075                    return _themeLocalService.init(servletContextName, servletContext,
076                            themesPath, loadFromServletContext, xmls, pluginPackage);
077            }
078    
079            public void uninstallThemes(java.util.List<java.lang.String> themeIds) {
080                    _themeLocalService.uninstallThemes(themeIds);
081            }
082    
083            public ThemeLocalService getWrappedThemeLocalService() {
084                    return _themeLocalService;
085            }
086    
087            private ThemeLocalService _themeLocalService;
088    }