001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.annotation.Isolation;
018 import com.liferay.portal.kernel.annotation.Transactional;
019 import com.liferay.portal.kernel.exception.PortalException;
020 import com.liferay.portal.kernel.exception.SystemException;
021
022
039 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
040 PortalException.class, SystemException.class})
041 public interface LayoutSetService {
042 public void updateLogo(long groupId, boolean privateLayout, boolean logo,
043 java.io.File file)
044 throws com.liferay.portal.kernel.exception.PortalException,
045 com.liferay.portal.kernel.exception.SystemException;
046
047 public com.liferay.portal.model.LayoutSet updateLookAndFeel(long groupId,
048 boolean privateLayout, java.lang.String themeId,
049 java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
050 throws com.liferay.portal.kernel.exception.PortalException,
051 com.liferay.portal.kernel.exception.SystemException;
052
053 public com.liferay.portal.model.LayoutSet updateSettings(long groupId,
054 boolean privateLayout, java.lang.String settings)
055 throws com.liferay.portal.kernel.exception.PortalException,
056 com.liferay.portal.kernel.exception.SystemException;
057
058 public com.liferay.portal.model.LayoutSet updateVirtualHost(long groupId,
059 boolean privateLayout, java.lang.String virtualHost)
060 throws com.liferay.portal.kernel.exception.PortalException,
061 com.liferay.portal.kernel.exception.SystemException;
062 }