Class BatchResource
- java.lang.Object
-
- org.flowable.rest.service.api.management.BatchBaseResource
-
- org.flowable.rest.service.api.management.BatchResource
-
@RestController public class BatchResource extends BatchBaseResource
-
-
Field Summary
Fields Modifier and Type Field Description protected ProcessEngineConfigurationImplprocessEngineConfigurationprotected RestResponseFactoryrestResponseFactory-
Fields inherited from class org.flowable.rest.service.api.management.BatchBaseResource
managementService, restApiInterceptor
-
-
Constructor Summary
Constructors Constructor Description BatchResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteJob(String batchId, javax.servlet.http.HttpServletResponse response)BatchResponsegetBatch(String batchId, javax.servlet.http.HttpServletRequest request)StringgetBatchDocument(String batchId, javax.servlet.http.HttpServletResponse response)-
Methods inherited from class org.flowable.rest.service.api.management.BatchBaseResource
getBatchById, validateBatch
-
-
-
-
Field Detail
-
restResponseFactory
@Autowired protected RestResponseFactory restResponseFactory
-
processEngineConfiguration
@Autowired protected ProcessEngineConfigurationImpl processEngineConfiguration
-
-
Method Detail
-
getBatch
@GetMapping(value="/management/batches/{batchId}", produces="application/json") public BatchResponse getBatch(@PathVariable String batchId, javax.servlet.http.HttpServletRequest request)
-
getBatchDocument
@GetMapping("/management/batches/{batchId}/batch-document") public String getBatchDocument(@PathVariable String batchId, javax.servlet.http.HttpServletResponse response)
-
deleteJob
@DeleteMapping("/management/batches/{batchId}") public void deleteJob(@PathVariable String batchId, javax.servlet.http.HttpServletResponse response)
-
-