001
014
015 package com.liferay.portal.service;
016
017
026 public class LayoutSetServiceWrapper implements LayoutSetService,
027 ServiceWrapper<LayoutSetService> {
028 public LayoutSetServiceWrapper(LayoutSetService layoutSetService) {
029 _layoutSetService = layoutSetService;
030 }
031
032 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
033 java.io.InputStream inputStream)
034 throws com.liferay.portal.kernel.exception.PortalException,
035 com.liferay.portal.kernel.exception.SystemException {
036 _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream);
037 }
038
039 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
040 java.io.InputStream inputStream, boolean cleanUpStream)
041 throws com.liferay.portal.kernel.exception.PortalException,
042 com.liferay.portal.kernel.exception.SystemException {
043 _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream,
044 cleanUpStream);
045 }
046
047 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
048 boolean privateLayout, java.lang.String themeId,
049 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
050 throws com.liferay.portal.kernel.exception.PortalException,
051 com.liferay.portal.kernel.exception.SystemException {
052 return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
053 themeId, colorSchemeId, css, wapTheme);
054 }
055
056 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
057 boolean privateLayout, java.lang.String settings)
058 throws com.liferay.portal.kernel.exception.PortalException,
059 com.liferay.portal.kernel.exception.SystemException {
060 return _layoutSetService.updateSettings(groupId, privateLayout, settings);
061 }
062
063 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
064 boolean privateLayout, java.lang.String virtualHost)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 return _layoutSetService.updateVirtualHost(groupId, privateLayout,
068 virtualHost);
069 }
070
071
074 public LayoutSetService getWrappedLayoutSetService() {
075 return _layoutSetService;
076 }
077
078
081 public void setWrappedLayoutSetService(LayoutSetService layoutSetService) {
082 _layoutSetService = layoutSetService;
083 }
084
085 public LayoutSetService getWrappedService() {
086 return _layoutSetService;
087 }
088
089 public void setWrappedService(LayoutSetService layoutSetService) {
090 _layoutSetService = layoutSetService;
091 }
092
093 private LayoutSetService _layoutSetService;
094 }