Class BatchService
- java.lang.Object
-
- org.flowable.ui.admin.service.engine.BatchService
-
@Service public class BatchService extends Object
Service for invoking Flowable REST services.
-
-
Field Summary
Fields Modifier and Type Field Description protected FlowableClientServiceclientUtil
-
Constructor Summary
Constructors Constructor Description BatchService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteBatch(ServerConfig serverConfig, String batchId)com.fasterxml.jackson.databind.JsonNodegetBatch(ServerConfig serverConfig, String batchId)StringgetBatchDocument(ServerConfig serverConfig, String batchId)com.fasterxml.jackson.databind.JsonNodegetBatchPart(ServerConfig serverConfig, String batchPartId)StringgetBatchPartDocument(ServerConfig serverConfig, String batchPartId)com.fasterxml.jackson.databind.JsonNodelistBatches(ServerConfig serverConfig, Map<String,String[]> parameterMap)com.fasterxml.jackson.databind.JsonNodelistBatchParts(ServerConfig serverConfig, String batchId, Map<String,String[]> parameterMap)
-
-
-
Field Detail
-
clientUtil
@Autowired protected FlowableClientService clientUtil
-
-
Method Detail
-
listBatches
public com.fasterxml.jackson.databind.JsonNode listBatches(ServerConfig serverConfig, Map<String,String[]> parameterMap)
-
getBatch
public com.fasterxml.jackson.databind.JsonNode getBatch(ServerConfig serverConfig, String batchId)
-
getBatchDocument
public String getBatchDocument(ServerConfig serverConfig, String batchId)
-
deleteBatch
public void deleteBatch(ServerConfig serverConfig, String batchId)
-
listBatchParts
public com.fasterxml.jackson.databind.JsonNode listBatchParts(ServerConfig serverConfig, String batchId, Map<String,String[]> parameterMap)
-
getBatchPart
public com.fasterxml.jackson.databind.JsonNode getBatchPart(ServerConfig serverConfig, String batchPartId)
-
getBatchPartDocument
public String getBatchPartDocument(ServerConfig serverConfig, String batchPartId)
-
-