@RestController public class BatchResource extends BatchBaseResource
| Modifier and Type | Field and Description |
|---|---|
protected ProcessEngineConfigurationImpl |
processEngineConfiguration |
protected RestResponseFactory |
restResponseFactory |
managementService, restApiInterceptor| Constructor and Description |
|---|
BatchResource() |
| Modifier and Type | Method and Description |
|---|---|
void |
deleteJob(String batchId,
javax.servlet.http.HttpServletResponse response) |
BatchResponse |
getBatch(String batchId,
javax.servlet.http.HttpServletRequest request) |
String |
getBatchDocument(String batchId,
javax.servlet.http.HttpServletResponse response) |
getBatchById, validateBatch@Autowired protected RestResponseFactory restResponseFactory
@Autowired protected ProcessEngineConfigurationImpl processEngineConfiguration
@GetMapping(value="/management/batches/{batchId}",
produces="application/json")
public BatchResponse getBatch(@PathVariable
String batchId,
javax.servlet.http.HttpServletRequest request)
@GetMapping(value="/management/batches/{batchId}/batch-document")
public String getBatchDocument(@PathVariable
String batchId,
javax.servlet.http.HttpServletResponse response)
@DeleteMapping(value="/management/batches/{batchId}")
public void deleteJob(@PathVariable
String batchId,
javax.servlet.http.HttpServletResponse response)
Copyright © 2022 Flowable. All rights reserved.