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
036 public void updateLayoutSetPrototypeLinkEnabled(long groupId,
037 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
038 throws com.liferay.portal.kernel.exception.PortalException,
039 com.liferay.portal.kernel.exception.SystemException {
040 _layoutSetService.updateLayoutSetPrototypeLinkEnabled(groupId,
041 privateLayout, layoutSetPrototypeLinkEnabled);
042 }
043
044
064 public void updateLayoutSetPrototypeLinkEnabled(long groupId,
065 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled,
066 java.lang.String layoutSetPrototypeUuid)
067 throws com.liferay.portal.kernel.exception.PortalException,
068 com.liferay.portal.kernel.exception.SystemException {
069 _layoutSetService.updateLayoutSetPrototypeLinkEnabled(groupId,
070 privateLayout, layoutSetPrototypeLinkEnabled, layoutSetPrototypeUuid);
071 }
072
073 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
074 java.io.InputStream inputStream)
075 throws com.liferay.portal.kernel.exception.PortalException,
076 com.liferay.portal.kernel.exception.SystemException {
077 _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream);
078 }
079
080 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
081 java.io.InputStream inputStream, boolean cleanUpStream)
082 throws com.liferay.portal.kernel.exception.PortalException,
083 com.liferay.portal.kernel.exception.SystemException {
084 _layoutSetService.updateLogo(groupId, privateLayout, logo, inputStream,
085 cleanUpStream);
086 }
087
088 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
089 boolean privateLayout, java.lang.String themeId,
090 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
091 throws com.liferay.portal.kernel.exception.PortalException,
092 com.liferay.portal.kernel.exception.SystemException {
093 return _layoutSetService.updateLookAndFeel(groupId, privateLayout,
094 themeId, colorSchemeId, css, wapTheme);
095 }
096
097 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
098 boolean privateLayout, java.lang.String settings)
099 throws com.liferay.portal.kernel.exception.PortalException,
100 com.liferay.portal.kernel.exception.SystemException {
101 return _layoutSetService.updateSettings(groupId, privateLayout, settings);
102 }
103
104 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
105 boolean privateLayout, java.lang.String virtualHost)
106 throws com.liferay.portal.kernel.exception.PortalException,
107 com.liferay.portal.kernel.exception.SystemException {
108 return _layoutSetService.updateVirtualHost(groupId, privateLayout,
109 virtualHost);
110 }
111
112
115 public LayoutSetService getWrappedLayoutSetService() {
116 return _layoutSetService;
117 }
118
119
122 public void setWrappedLayoutSetService(LayoutSetService layoutSetService) {
123 _layoutSetService = layoutSetService;
124 }
125
126 public LayoutSetService getWrappedService() {
127 return _layoutSetService;
128 }
129
130 public void setWrappedService(LayoutSetService layoutSetService) {
131 _layoutSetService = layoutSetService;
132 }
133
134 private LayoutSetService _layoutSetService;
135 }