Liferay 7.0-ce-m6

com.liferay.portlet.exportimport.service
Interface StagingService

All Superinterfaces:
BaseService
All Known Implementing Classes:
StagingServiceBaseImpl, StagingServiceImpl, StagingServiceWrapper

@AccessControlled
@JSONWebService
@ProviderType
@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
 void cleanUpStagingRequest(long stagingRequestId)
           
 long createStagingRequest(long groupId, String checksum)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 MissingReferences publishStagingRequest(long stagingRequestId, boolean privateLayout, Map<String,String[]> parameterMap)
          Deprecated. As of 7.0.0, with no direct replacement
 MissingReferences publishStagingRequest(long stagingRequestId, ExportImportConfiguration exportImportConfiguration)
           
 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)
          Deprecated. As of 7.0.0, replaced by publishStagingRequest(long, boolean, java.util.Map)
 

Method Detail

cleanUpStagingRequest

void cleanUpStagingRequest(long stagingRequestId)
                           throws PortalException
Throws:
PortalException

createStagingRequest

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

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

publishStagingRequest

MissingReferences publishStagingRequest(long stagingRequestId,
                                        ExportImportConfiguration exportImportConfiguration)
                                        throws PortalException
Throws:
PortalException

publishStagingRequest

@Deprecated
MissingReferences publishStagingRequest(long stagingRequestId,
                                                   boolean privateLayout,
                                                   Map<String,String[]> parameterMap)
                                        throws PortalException
Deprecated. As of 7.0.0, with no direct replacement

Throws:
PortalException

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

updateStagingRequest

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

validateStagingRequest

@Deprecated
MissingReferences validateStagingRequest(long stagingRequestId,
                                                    boolean privateLayout,
                                                    Map<String,String[]> parameterMap)
                                         throws PortalException
Deprecated. As of 7.0.0, replaced by publishStagingRequest(long, boolean, java.util.Map)

Throws:
PortalException

Liferay 7.0-ce-m6