public interface ProcessInstanceResource
Modifier and Type | Method and Description |
---|---|
void |
deleteProcessInstance(boolean skipCustomListeners,
boolean skipIoMappings,
boolean skipSubprocesses,
boolean failIfNotExists) |
ActivityInstanceDto |
getActivityInstanceTree() |
ProcessInstanceDto |
getProcessInstance() |
VariableResource |
getVariablesResource() |
void |
modifyProcessInstance(ProcessInstanceModificationDto dto) |
BatchDto |
modifyProcessInstanceAsync(ProcessInstanceModificationDto dto) |
void |
updateSuspensionState(ProcessInstanceSuspensionStateDto dto) |
@GET @Produces(value="application/json") ProcessInstanceDto getProcessInstance()
@DELETE void deleteProcessInstance(@QueryParam(value="skipCustomListeners") @DefaultValue(value="false") boolean skipCustomListeners, @QueryParam(value="skipIoMappings") @DefaultValue(value="false") boolean skipIoMappings, @QueryParam(value="skipSubprocesses") @DefaultValue(value="false") boolean skipSubprocesses, @QueryParam(value="failIfNotExists") @DefaultValue(value="true") boolean failIfNotExists)
@Path(value="/variables") VariableResource getVariablesResource()
@GET @Path(value="/activity-instances") @Produces(value="application/json") ActivityInstanceDto getActivityInstanceTree()
@PUT @Path(value="/suspended") @Consumes(value="application/json") void updateSuspensionState(ProcessInstanceSuspensionStateDto dto)
@POST @Path(value="/modification") @Consumes(value="application/json") void modifyProcessInstance(ProcessInstanceModificationDto dto)
@POST @Path(value="/modification-async") @Consumes(value="application/json") @Produces(value="application/json") BatchDto modifyProcessInstanceAsync(ProcessInstanceModificationDto dto)
Copyright © 2022. All rights reserved.