001    /**
002     * Copyright (c) 2000-2011 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            /**
032            * Returns the Spring bean ID for this bean.
033            *
034            * @return the Spring bean ID for this bean
035            */
036            public java.lang.String getBeanIdentifier() {
037                    return _themeLocalService.getBeanIdentifier();
038            }
039    
040            /**
041            * Sets the Spring bean ID for this bean.
042            *
043            * @param beanIdentifier the Spring bean ID for this bean
044            */
045            public void setBeanIdentifier(java.lang.String beanIdentifier) {
046                    _themeLocalService.setBeanIdentifier(beanIdentifier);
047            }
048    
049            public com.liferay.portal.model.ColorScheme getColorScheme(long companyId,
050                    java.lang.String themeId, java.lang.String colorSchemeId,
051                    boolean wapTheme)
052                    throws com.liferay.portal.kernel.exception.SystemException {
053                    return _themeLocalService.getColorScheme(companyId, themeId,
054                            colorSchemeId, wapTheme);
055            }
056    
057            public com.liferay.portal.model.Theme getTheme(long companyId,
058                    java.lang.String themeId, boolean wapTheme)
059                    throws com.liferay.portal.kernel.exception.SystemException {
060                    return _themeLocalService.getTheme(companyId, themeId, wapTheme);
061            }
062    
063            public java.util.List<com.liferay.portal.model.Theme> getThemes(
064                    long companyId) {
065                    return _themeLocalService.getThemes(companyId);
066            }
067    
068            public java.util.List<com.liferay.portal.model.Theme> getThemes(
069                    long companyId, long groupId, long userId, boolean wapTheme)
070                    throws com.liferay.portal.kernel.exception.SystemException {
071                    return _themeLocalService.getThemes(companyId, groupId, userId, wapTheme);
072            }
073    
074            public java.util.List<com.liferay.portal.model.Theme> getWARThemes() {
075                    return _themeLocalService.getWARThemes();
076            }
077    
078            public java.util.List<java.lang.String> init(
079                    javax.servlet.ServletContext servletContext,
080                    java.lang.String themesPath, boolean loadFromServletContext,
081                    java.lang.String[] xmls,
082                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
083                    return _themeLocalService.init(servletContext, themesPath,
084                            loadFromServletContext, xmls, pluginPackage);
085            }
086    
087            public java.util.List<java.lang.String> init(
088                    java.lang.String servletContextName,
089                    javax.servlet.ServletContext servletContext,
090                    java.lang.String themesPath, boolean loadFromServletContext,
091                    java.lang.String[] xmls,
092                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
093                    return _themeLocalService.init(servletContextName, servletContext,
094                            themesPath, loadFromServletContext, xmls, pluginPackage);
095            }
096    
097            public void uninstallThemes(java.util.List<java.lang.String> themeIds) {
098                    _themeLocalService.uninstallThemes(themeIds);
099            }
100    
101            public ThemeLocalService getWrappedThemeLocalService() {
102                    return _themeLocalService;
103            }
104    
105            public void setWrappedThemeLocalService(ThemeLocalService themeLocalService) {
106                    _themeLocalService = themeLocalService;
107            }
108    
109            private ThemeLocalService _themeLocalService;
110    }