Liferay 6.0.5

com.liferay.portal.service
Interface LayoutSetService

All Known Implementing Classes:
LayoutSetServiceBaseImpl, LayoutSetServiceImpl, LayoutSetServiceWrapper

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

The interface for the layout set remote service.

Never modify or reference this interface directly. Always use LayoutSetServiceUtil to access the layout set remote service. Add custom service methods to LayoutSetServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

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 is generated.

Method Summary
 void updateLogo(long groupId, boolean privateLayout, boolean logo, File file)
           
 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

updateLogo

void updateLogo(long groupId,
                boolean privateLayout,
                boolean logo,
                File file)
                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.0.5