@RestController public class BatchClientResource extends AbstractClientResource
| Modifier and Type | Field and Description |
|---|---|
protected BatchService |
clientService |
configRepository| Constructor and Description |
|---|
BatchClientResource() |
| Modifier and Type | Method and Description |
|---|---|
void |
deleteJob(String batchId,
javax.servlet.http.HttpServletRequest request)
DELETE /rest/admin/batches/{batchId} -> delete batch
|
com.fasterxml.jackson.databind.JsonNode |
getBatch(String batchId,
javax.servlet.http.HttpServletRequest request)
GET /rest/admin/batches/{batchId} -> return batch data
|
String |
getBatchDocument(String batchId,
javax.servlet.http.HttpServletRequest request)
GET /rest/admin/batches/{batchId}/batch-document
|
com.fasterxml.jackson.databind.JsonNode |
getBatchParts(String batchId,
javax.servlet.http.HttpServletRequest request)
GET /rest/admin/batches/{batchId}/batch-parts
|
getRequestParametersWithoutServerId, retrieveServerConfig@Autowired protected BatchService clientService
@GetMapping(value="/rest/admin/batches/{batchId}",
produces="application/json")
public com.fasterxml.jackson.databind.JsonNode getBatch(@PathVariable
String batchId,
javax.servlet.http.HttpServletRequest request)
throws org.flowable.ui.common.service.exception.BadRequestException
org.flowable.ui.common.service.exception.BadRequestException@GetMapping(value="/rest/admin/batches/{batchId}/batch-parts",
produces="application/json")
public com.fasterxml.jackson.databind.JsonNode getBatchParts(@PathVariable
String batchId,
javax.servlet.http.HttpServletRequest request)
throws org.flowable.ui.common.service.exception.BadRequestException
org.flowable.ui.common.service.exception.BadRequestException@DeleteMapping(value="/rest/admin/batches/{batchId}",
produces="application/json")
@ResponseStatus(value=OK)
public void deleteJob(@PathVariable
String batchId,
javax.servlet.http.HttpServletRequest request)
throws org.flowable.ui.common.service.exception.BadRequestException
org.flowable.ui.common.service.exception.BadRequestException@GetMapping(value="/rest/admin/batches/{batchId}/batch-document",
produces="text/plain")
public String getBatchDocument(@PathVariable
String batchId,
javax.servlet.http.HttpServletRequest request)
throws org.flowable.ui.common.service.exception.BadRequestException
org.flowable.ui.common.service.exception.BadRequestExceptionCopyright © 2022 Flowable. All rights reserved.