001
014
015 package com.liferay.portal.service;
016
017
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 }