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 import com.liferay.portal.security.ac.AccessControlled;
023
024
037 @AccessControlled
038 @JSONWebService
039 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
040 PortalException.class, SystemException.class})
041 public interface LayoutSetService extends BaseService {
042
047
048
053 public java.lang.String getBeanIdentifier();
054
055
060 public void setBeanIdentifier(java.lang.String beanIdentifier);
061
062
082 public void updateLayoutSetPrototypeLinkEnabled(long groupId,
083 boolean privateLayout, boolean layoutSetPrototypeLinkEnabled,
084 java.lang.String layoutSetPrototypeUuid)
085 throws com.liferay.portal.kernel.exception.PortalException,
086 com.liferay.portal.kernel.exception.SystemException;
087
088 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
089 byte[] bytes)
090 throws com.liferay.portal.kernel.exception.PortalException,
091 com.liferay.portal.kernel.exception.SystemException;
092
093 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
094 java.io.File file)
095 throws com.liferay.portal.kernel.exception.PortalException,
096 com.liferay.portal.kernel.exception.SystemException;
097
098 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
099 java.io.InputStream inputStream)
100 throws com.liferay.portal.kernel.exception.PortalException,
101 com.liferay.portal.kernel.exception.SystemException;
102
103 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
104 java.io.InputStream inputStream, boolean cleanUpStream)
105 throws com.liferay.portal.kernel.exception.PortalException,
106 com.liferay.portal.kernel.exception.SystemException;
107
108 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
109 boolean privateLayout, java.lang.String themeId,
110 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
111 throws com.liferay.portal.kernel.exception.PortalException,
112 com.liferay.portal.kernel.exception.SystemException;
113
114 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
115 boolean privateLayout, java.lang.String settings)
116 throws com.liferay.portal.kernel.exception.PortalException,
117 com.liferay.portal.kernel.exception.SystemException;
118
119 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
120 boolean privateLayout, java.lang.String virtualHost)
121 throws com.liferay.portal.kernel.exception.PortalException,
122 com.liferay.portal.kernel.exception.SystemException;
123 }