Package org.activiti.api.process.runtime
Interface ProcessAdminRuntime
public interface ProcessAdminRuntime
-
Method Summary
Modifier and TypeMethodDescriptiondelete(DeleteProcessPayload deleteProcessPayload) Delete a Process InstanceprocessDefinition(String processDefinitionId) Get process definition by key or id (where the ID is autogenerated at deployment time)processDefinitions(Pageable pageable) Get all process definitions by pagesprocessDefinitions(Pageable pageable, GetProcessDefinitionsPayload getProcessDefinitionsPayload) Get all process definitions by pages using payload filtersprocessInstance(String processInstanceId) Get Process Instance by idprocessInstances(Pageable pageable) Get all process instances by pages - Notice that only in-flight or suspended processes will be returned here - For already completed process instance check at the query serviceprocessInstances(Pageable pageable, GetProcessInstancesPayload getProcessInstancesPayload) Get all process instances by pages filtering by - Notice that only in-flight or suspended processes will be returned here - For already completed process instance check at the query servicevoidreceive(ReceiveMessagePayload messagePayload) voidremoveVariables(RemoveProcessVariablesPayload removeProcessVariablesPayload) resume(ResumeProcessPayload resumeProcessPayload) Resume a suspended process instancevoidsetVariables(SetProcessVariablesPayload setProcessVariablesPayload) voidsignal(SignalPayload signalPayload) Signalstart(StartMessagePayload messagePayload) start(StartProcessPayload startProcessPayload) Start a new Process Instance based on the payload parameterssuspend(SuspendProcessPayload suspendProcessPayload) Suspend a process instanceupdate(UpdateProcessPayload updateProcessPayload) Update a Process Instancevariables(GetVariablesPayload getVariablesPayload)
-
Method Details
-
processDefinition
Get process definition by key or id (where the ID is autogenerated at deployment time) -
start
Start a new Process Instance based on the payload parameters -
processInstance
Get Process Instance by id -
delete
Delete a Process Instance -
signal
Signal -
suspend
Suspend a process instance -
resume
Resume a suspended process instance -
update
Update a Process Instance -
setVariables
-
removeVariables
-
variables
-
receive
-
start
-