ProcessInstance |
ProcessRuntime.createProcessInstance(String processId,
Map<String,Object> parameters) |
Creates a new process instance (but does not yet start it).
|
ProcessInstance |
ProcessContext.getProcessInstance() |
Returns the process instance that is currently being
executed in this context.
|
ProcessInstance |
ProcessRuntime.getProcessInstance(long processInstanceId) |
Returns the process instance with the given id.
|
ProcessInstance |
ProcessRuntime.getProcessInstance(long processInstanceId,
boolean readonly) |
Returns the process instance with the given id.
|
ProcessInstance |
ProcessRuntime.startProcess(String processId) |
Start a new process instance.
|
ProcessInstance |
ProcessRuntime.startProcess(String processId,
Map<String,Object> parameters) |
Start a new process instance.
|
ProcessInstance |
ProcessRuntime.startProcess(String processId,
Map<String,Object> parameters,
AgendaFilter agendaFilter) |
Start a new process instance.
|
ProcessInstance |
ProcessRuntime.startProcess(String processId,
AgendaFilter agendaFilter) |
Start a new process instance.
|
ProcessInstance |
ProcessRuntime.startProcessFromNodeIds(String processId,
Map<String,Object> params,
String... nodeId) |
Starts a new process instances starting from the nodes given
|
ProcessInstance |
ProcessRuntime.startProcessInstance(long processInstanceId) |
Starts the given process instance (which was created by using createProcesInstance
but not yet started).
|