Liferay 6.2.0

com.liferay.portal.service
Interface StagingService

All Superinterfaces:
BaseService
All Known Implementing Classes:
StagingServiceBaseImpl, StagingServiceImpl, 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, StagingServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
abstract  void cleanUpStagingRequest(long stagingRequestId)
           
abstract  long createStagingRequest(long groupId, String checksum)
           
abstract  String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
abstract  void publishStagingRequest(long stagingRequestId, boolean privateLayout, Map<String,String[]> parameterMap)
           
abstract  void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
abstract  void updateStagingRequest(long stagingRequestId, String fileName, byte[] bytes)
           
abstract  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.0