Liferay 6.1.0-ce-rc1

com.liferay.portal.service
Interface LayoutSetService

All Known Implementing Classes:
LayoutSetServiceBaseImpl, LayoutSetServiceImpl, LayoutSetServiceWrapper

@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface LayoutSetService

The interface for the layout set remote service.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
LayoutSetServiceUtil, LayoutSetServiceBaseImpl, LayoutSetServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 void updateLayoutSetPrototypeLinkEnabled(long groupId, boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
           
 void updateLogo(long groupId, boolean privateLayout, boolean logo, InputStream inputStream)
           
 void updateLogo(long groupId, boolean privateLayout, boolean logo, InputStream inputStream, boolean cleanUpStream)
           
 LayoutSet updateLookAndFeel(long groupId, boolean privateLayout, String themeId, String colorSchemeId, String css, boolean wapTheme)
           
 LayoutSet updateSettings(long groupId, boolean privateLayout, String settings)
           
 LayoutSet updateVirtualHost(long groupId, boolean privateLayout, String virtualHost)
           
 

Method Detail

updateLayoutSetPrototypeLinkEnabled

void updateLayoutSetPrototypeLinkEnabled(long groupId,
                                         boolean privateLayout,
                                         boolean layoutSetPrototypeLinkEnabled)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

updateLogo

void updateLogo(long groupId,
                boolean privateLayout,
                boolean logo,
                InputStream inputStream)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

updateLogo

void updateLogo(long groupId,
                boolean privateLayout,
                boolean logo,
                InputStream inputStream,
                boolean cleanUpStream)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

updateLookAndFeel

LayoutSet updateLookAndFeel(long groupId,
                            boolean privateLayout,
                            String themeId,
                            String colorSchemeId,
                            String css,
                            boolean wapTheme)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

updateSettings

LayoutSet updateSettings(long groupId,
                         boolean privateLayout,
                         String settings)
                         throws PortalException,
                                SystemException
Throws:
PortalException
SystemException

updateVirtualHost

LayoutSet updateVirtualHost(long groupId,
                            boolean privateLayout,
                            String virtualHost)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

Liferay 6.1.0-ce-rc1