001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.exception.SystemException;
019 import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
020 import com.liferay.portal.kernel.transaction.Isolation;
021 import com.liferay.portal.kernel.transaction.Transactional;
022
023
036 @JSONWebService
037 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
038 PortalException.class, SystemException.class})
039 public interface LayoutSetService extends BaseService {
040
045
046
051 public java.lang.String getBeanIdentifier();
052
053
058 public void setBeanIdentifier(java.lang.String beanIdentifier);
059
060
064 public void updateLayoutSetPrototypeLinkEnabled(long groupId,
065 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
066 throws com.liferay.portal.kernel.exception.PortalException,
067 com.liferay.portal.kernel.exception.SystemException;
068
069
089 public void updateLayoutSetPrototypeLinkEnabled(long groupId,
090 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled,
091 java.lang.String layoutSetPrototypeUuid)
092 throws com.liferay.portal.kernel.exception.PortalException,
093 com.liferay.portal.kernel.exception.SystemException;
094
095 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
096 java.io.InputStream inputStream)
097 throws com.liferay.portal.kernel.exception.PortalException,
098 com.liferay.portal.kernel.exception.SystemException;
099
100 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
101 java.io.InputStream inputStream, boolean cleanUpStream)
102 throws com.liferay.portal.kernel.exception.PortalException,
103 com.liferay.portal.kernel.exception.SystemException;
104
105 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
106 boolean privateLayout, java.lang.String themeId,
107 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
108 throws com.liferay.portal.kernel.exception.PortalException,
109 com.liferay.portal.kernel.exception.SystemException;
110
111 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
112 boolean privateLayout, java.lang.String settings)
113 throws com.liferay.portal.kernel.exception.PortalException,
114 com.liferay.portal.kernel.exception.SystemException;
115
116 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
117 boolean privateLayout, java.lang.String virtualHost)
118 throws com.liferay.portal.kernel.exception.PortalException,
119 com.liferay.portal.kernel.exception.SystemException;
120 }