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
036 public java.lang.String getBeanIdentifier() {
037 return _themeLocalService.getBeanIdentifier();
038 }
039
040
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 }