001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.MethodCache;
019 import com.liferay.portal.kernel.util.ReferenceRegistry;
020
021
034 public class LayoutSetServiceUtil {
035
040 public static void updateLayoutSetPrototypeLinkEnabled(long groupId,
041 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
042 throws com.liferay.portal.kernel.exception.PortalException,
043 com.liferay.portal.kernel.exception.SystemException {
044 getService()
045 .updateLayoutSetPrototypeLinkEnabled(groupId, privateLayout,
046 layoutSetPrototypeLinkEnabled);
047 }
048
049 public static void updateLogo(long groupId, boolean privateLayout,
050 boolean logo, java.io.InputStream inputStream)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException {
053 getService().updateLogo(groupId, privateLayout, logo, inputStream);
054 }
055
056 public static void updateLogo(long groupId, boolean privateLayout,
057 boolean logo, java.io.InputStream inputStream, boolean cleanUpStream)
058 throws com.liferay.portal.kernel.exception.PortalException,
059 com.liferay.portal.kernel.exception.SystemException {
060 getService()
061 .updateLogo(groupId, privateLayout, logo, inputStream, cleanUpStream);
062 }
063
064 public static com.liferay.portal.model.LayoutSet updateLookAndFeel(
065 long groupId, boolean privateLayout, java.lang.String themeId,
066 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
067 throws com.liferay.portal.kernel.exception.PortalException,
068 com.liferay.portal.kernel.exception.SystemException {
069 return getService()
070 .updateLookAndFeel(groupId, privateLayout, themeId,
071 colorSchemeId, css, wapTheme);
072 }
073
074 public static com.liferay.portal.model.LayoutSet updateSettings(
075 long groupId, boolean privateLayout, java.lang.String settings)
076 throws com.liferay.portal.kernel.exception.PortalException,
077 com.liferay.portal.kernel.exception.SystemException {
078 return getService().updateSettings(groupId, privateLayout, settings);
079 }
080
081 public static com.liferay.portal.model.LayoutSet updateVirtualHost(
082 long groupId, boolean privateLayout, java.lang.String virtualHost)
083 throws com.liferay.portal.kernel.exception.PortalException,
084 com.liferay.portal.kernel.exception.SystemException {
085 return getService()
086 .updateVirtualHost(groupId, privateLayout, virtualHost);
087 }
088
089 public static LayoutSetService getService() {
090 if (_service == null) {
091 _service = (LayoutSetService)PortalBeanLocatorUtil.locate(LayoutSetService.class.getName());
092
093 ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
094 "_service");
095 MethodCache.remove(LayoutSetService.class);
096 }
097
098 return _service;
099 }
100
101 public void setService(LayoutSetService service) {
102 MethodCache.remove(LayoutSetService.class);
103
104 _service = service;
105
106 ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
107 "_service");
108 MethodCache.remove(LayoutSetService.class);
109 }
110
111 private static LayoutSetService _service;
112 }