001
014
015 package com.liferay.portal.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.exception.PortalException;
020 import com.liferay.portal.kernel.exception.SystemException;
021 import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
022 import com.liferay.portal.kernel.transaction.Isolation;
023 import com.liferay.portal.kernel.transaction.Transactional;
024 import com.liferay.portal.security.ac.AccessControlled;
025
026
037 @AccessControlled
038 @JSONWebService
039 @ProviderType
040 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
041 PortalException.class, SystemException.class})
042 public interface LayoutSetService extends BaseService {
043
048
049
054 public java.lang.String getBeanIdentifier();
055
056
061 public void setBeanIdentifier(java.lang.String beanIdentifier);
062
063
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
087 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
088 byte[] bytes)
089 throws com.liferay.portal.kernel.exception.PortalException;
090
091 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
092 java.io.File file)
093 throws com.liferay.portal.kernel.exception.PortalException;
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
099 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
100 java.io.InputStream inputStream, boolean cleanUpStream)
101 throws com.liferay.portal.kernel.exception.PortalException;
102
103 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
104 boolean privateLayout, java.lang.String themeId,
105 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
106 throws com.liferay.portal.kernel.exception.PortalException;
107
108 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
109 boolean privateLayout, java.lang.String settings)
110 throws com.liferay.portal.kernel.exception.PortalException;
111
112 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
113 boolean privateLayout, java.lang.String virtualHost)
114 throws com.liferay.portal.kernel.exception.PortalException;
115 }