1
14
15 package com.liferay.portal.service;
16
17
18
34 public class ThemeLocalServiceWrapper implements ThemeLocalService {
35 public ThemeLocalServiceWrapper(ThemeLocalService themeLocalService) {
36 _themeLocalService = themeLocalService;
37 }
38
39 public com.liferay.portal.model.ColorScheme getColorScheme(long companyId,
40 java.lang.String themeId, java.lang.String colorSchemeId,
41 boolean wapTheme)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return _themeLocalService.getColorScheme(companyId, themeId,
44 colorSchemeId, wapTheme);
45 }
46
47 public com.liferay.portal.model.Theme getTheme(long companyId,
48 java.lang.String themeId, boolean wapTheme)
49 throws com.liferay.portal.kernel.exception.SystemException {
50 return _themeLocalService.getTheme(companyId, themeId, wapTheme);
51 }
52
53 public java.util.List<com.liferay.portal.model.Theme> getThemes(
54 long companyId) {
55 return _themeLocalService.getThemes(companyId);
56 }
57
58 public java.util.List<com.liferay.portal.model.Theme> getThemes(
59 long companyId, long groupId, long userId, boolean wapTheme)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 return _themeLocalService.getThemes(companyId, groupId, userId, wapTheme);
62 }
63
64 public java.util.List<com.liferay.portal.model.Theme> getWARThemes() {
65 return _themeLocalService.getWARThemes();
66 }
67
68 public java.util.List<java.lang.String> init(
69 javax.servlet.ServletContext servletContext,
70 java.lang.String themesPath, boolean loadFromServletContext,
71 java.lang.String[] xmls,
72 com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
73 return _themeLocalService.init(servletContext, themesPath,
74 loadFromServletContext, xmls, pluginPackage);
75 }
76
77 public java.util.List<java.lang.String> init(
78 java.lang.String servletContextName,
79 javax.servlet.ServletContext servletContext,
80 java.lang.String themesPath, boolean loadFromServletContext,
81 java.lang.String[] xmls,
82 com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
83 return _themeLocalService.init(servletContextName, servletContext,
84 themesPath, loadFromServletContext, xmls, pluginPackage);
85 }
86
87 public void uninstallThemes(java.util.List<java.lang.String> themeIds) {
88 _themeLocalService.uninstallThemes(themeIds);
89 }
90
91 public ThemeLocalService getWrappedThemeLocalService() {
92 return _themeLocalService;
93 }
94
95 private ThemeLocalService _themeLocalService;
96 }