Package org.flowable.batch.api
Interface BatchPart
public interface BatchPart
-
Method Summary
Modifier and TypeMethodDescriptionThe id of the batch that this batch part is linked toThe search key of the batch that this batch part is linked toThe second search key of the batch that this batch part is linked toThe type of the batch that this batch part is linked toThe time the batch part was completedThe time the batch part was createdgetId()
The technical id of the batch partgetResultDocumentJson
(String engineType) The result document of the batch partThe scope id of the batch partThe scope type of the batch partThe search key of the batch partThe second search key of the batch partThe status of the batch partThe sub scope id of the batch partThe tenant id of the batch partgetType()
The type of the batch partboolean
Whether the batch part is completed
-
Method Details
-
getId
String getId()The technical id of the batch part -
getType
String getType()The type of the batch part -
getBatchType
String getBatchType()The type of the batch that this batch part is linked to -
getBatchId
String getBatchId()The id of the batch that this batch part is linked to -
getCreateTime
Date getCreateTime()The time the batch part was created -
getCompleteTime
Date getCompleteTime()The time the batch part was completed -
isCompleted
boolean isCompleted()Whether the batch part is completed -
getSearchKey
String getSearchKey()The search key of the batch part -
getSearchKey2
String getSearchKey2()The second search key of the batch part -
getBatchSearchKey
String getBatchSearchKey()The search key of the batch that this batch part is linked to -
getBatchSearchKey2
String getBatchSearchKey2()The second search key of the batch that this batch part is linked to -
getStatus
String getStatus()The status of the batch part -
getScopeId
String getScopeId()The scope id of the batch part -
getScopeType
String getScopeType()The scope type of the batch part -
getSubScopeId
String getSubScopeId()The sub scope id of the batch part -
getResultDocumentJson
The result document of the batch part -
getTenantId
String getTenantId()The tenant id of the batch part
-