Liferay 6.2-ce-ga5

com.liferay.portal.service
Interface StagingService

All Superinterfaces:
BaseService
All Known Implementing Classes:
StagingServiceWrapper

@ProviderType
@AccessControlled
@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface StagingService
extends BaseService

Provides the remote service interface for Staging. 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:
StagingServiceUtil, StagingServiceBaseImpl, com.liferay.portal.service.impl.StagingServiceImpl

Method Summary
 void cleanUpStagingRequest(long stagingRequestId)
           
 long createStagingRequest(long groupId, String checksum)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 void publishStagingRequest(long stagingRequestId, boolean privateLayout, Map<String,String[]> parameterMap)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void updateStagingRequest(long stagingRequestId, String fileName, byte[] bytes)
           
 MissingReferences validateStagingRequest(long stagingRequestId, boolean privateLayout, Map<String,String[]> parameterMap)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

cleanUpStagingRequest

void cleanUpStagingRequest(long stagingRequestId)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

createStagingRequest

long createStagingRequest(long groupId,
                          String checksum)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

publishStagingRequest

void publishStagingRequest(long stagingRequestId,
                           boolean privateLayout,
                           Map<String,String[]> parameterMap)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

updateStagingRequest

void updateStagingRequest(long stagingRequestId,
                          String fileName,
                          byte[] bytes)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

validateStagingRequest

MissingReferences validateStagingRequest(long stagingRequestId,
                                         boolean privateLayout,
                                         Map<String,String[]> parameterMap)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

Liferay 6.2-ce-ga5