|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Execution in org.ow2.bonita.pvm |
---|
Methods in org.ow2.bonita.pvm that return Execution | |
---|---|
Execution |
ExecutionService.findExecution(java.lang.String executionId)
the execution that is uniquely defined by the process definition and the business key. |
Execution |
ExecutionService.findExecution(java.lang.String processDefinitionName,
java.lang.String executionKey)
the execution that is uniquely defined by the process definition and the business key. |
Execution |
ExecutionService.setVariable(java.lang.String executionId,
java.lang.String name,
java.lang.Object value)
creates or overwrites a variable value on the referenced execution |
Execution |
ExecutionService.setVariables(java.lang.String executionId,
java.util.Map<java.lang.String,java.lang.Object> variables)
creates or overwrites the variable values on the referenced execution |
Execution |
ExecutionService.signalExecution(java.lang.String executionId)
provides an external trigger to an execution. |
Execution |
ExecutionService.signalExecution(java.lang.String executionId,
java.util.Map<java.lang.String,java.lang.Object> parameters)
provides a external trigger to an execution with parameters. |
Execution |
ExecutionService.signalExecution(java.lang.String executionId,
java.lang.String signalName)
provides a named external trigger to an execution. |
Execution |
ExecutionService.signalExecution(java.lang.String executionId,
java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters)
provides a named external trigger to an execution with parameters. |
Execution |
ExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey)
provides a named external trigger to an execution. |
Execution |
ExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.util.Map<java.lang.String,java.lang.Object> parameters)
provides a named external trigger to an execution with parameters. |
Execution |
ExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.lang.String signalName)
provides a named external trigger to an execution. |
Execution |
ExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters)
provides a named external trigger to an execution with parameters. |
Execution |
ExecutionService.startExecution(java.lang.String processDefinitionId)
starts a new execution for the ProcessDefinition with the given processDefinitionDbid. |
Execution |
ExecutionService.startExecution(java.lang.String processDefinitionId,
java.util.Map<java.lang.String,java.lang.Object> variables)
starts a new execution for the ProcessDefinition with the given processDefinitionDbid. |
Execution |
ExecutionService.startExecution(java.lang.String processDefinitionId,
java.util.Map<java.lang.String,java.lang.Object> variables,
java.lang.String executionKey)
starts a new execution for the ProcessDefinition with the given processDefinitionDbid. |
Execution |
ExecutionService.startExecution(java.lang.String processDefinitionId,
java.lang.String executionKey)
starts a new execution for the ProcessDefinition with the given processDefinitionDbid. |
Execution |
ExecutionService.startExecutionInLatest(java.lang.String processDefinitionName)
starts a new execution in the latest version of the given process definition. |
Execution |
ExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.util.Map<java.lang.String,java.lang.Object> variables)
starts a new execution in the latest version of the given processDefinitionName. |
Execution |
ExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.util.Map<java.lang.String,java.lang.Object> variables,
java.lang.String executionKey)
starts a new execution in the latest version of the given processDefinitionName. |
Execution |
ExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.lang.String executionKey)
starts a new execution in the latest version of the given processDefinitionName. |
Uses of Execution in org.ow2.bonita.pvm.activity |
---|
Subinterfaces of Execution in org.ow2.bonita.pvm.activity | |
---|---|
interface |
ActivityExecution
view upon an path of execution exposed to Activity
implementations. |
Methods in org.ow2.bonita.pvm.activity that return Execution | |
---|---|
Execution |
ActivityExecution.createExecution()
creates a child execution. |
Execution |
ActivityExecution.createExecution(Execution parent)
creates a new child execution under the given parent. |
Execution |
ActivityExecution.createExecution(java.lang.String name)
creates a child execution with the given name. |
Execution |
ActivityExecution.createExecution(java.lang.String name,
Execution parent)
creates a new child execution under the given parent with the given name. |
Methods in org.ow2.bonita.pvm.activity with parameters of type Execution | |
---|---|
Execution |
ActivityExecution.createExecution(Execution parent)
creates a new child execution under the given parent. |
Execution |
ActivityExecution.createExecution(java.lang.String name,
Execution parent)
creates a new child execution under the given parent with the given name. |
void |
ActivityExecution.move(Node destination,
Execution execution)
position the given execution in the destination node |
void |
ActivityExecution.removeExecution(Execution child)
removes the child execution from this execution. |
void |
ActivityExecution.removeExecution(Execution child,
Execution parent)
removes the child execution from the given parent. |
void |
ActivityExecution.take(Transition transition,
Execution execution)
let's the given execution take the transition. |
Uses of Execution in org.ow2.bonita.pvm.client |
---|
Subinterfaces of Execution in org.ow2.bonita.pvm.client | |
---|---|
interface |
ClientExecution
view upon an path of execution exposed to external clients. |
interface |
ClientProcessInstance
|
Methods in org.ow2.bonita.pvm.client with parameters of type Execution | |
---|---|
void |
ClientExecution.signal(Execution execution)
feeds a external trigger into the given execution. |
void |
ClientExecution.signal(java.util.Map<java.lang.String,java.lang.Object> parameters,
Execution execution)
feeds an external trigger into a given execution with
parameters. |
void |
ClientExecution.signal(java.lang.String signalName,
Execution execution)
feeds a named external trigger into a given execution. |
void |
ClientExecution.signal(java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters,
Execution execution)
feeds a named external trigger into a given execution
with parameters. |
Uses of Execution in org.ow2.bonita.pvm.internal.cmd |
---|
Methods in org.ow2.bonita.pvm.internal.cmd that return Execution | |
---|---|
Execution |
FindExecutionCmd.execute(Environment environment)
|
Execution |
StartExecutionCmd.execute(Environment environment)
|
Execution |
SetVariablesCmd.execute(Environment environment)
|
Execution |
StartExecutionInLatestCmd.execute(Environment environment)
|
Execution |
SignalCmd.execute(Environment environment)
|
Uses of Execution in org.ow2.bonita.pvm.internal.env |
---|
Constructors in org.ow2.bonita.pvm.internal.env with parameters of type Execution | |
---|---|
ExecutionContext(Execution execution)
|
|
ExecutionEnvironment(Execution execution)
|
Uses of Execution in org.ow2.bonita.pvm.internal.hibernate |
---|
Methods in org.ow2.bonita.pvm.internal.hibernate that return Execution | |
---|---|
Execution |
HibernatePvmDbSession.findExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey)
|
Methods in org.ow2.bonita.pvm.internal.hibernate with parameters of type Execution | |
---|---|
java.util.List<JobImpl<?>> |
HibernateJobDbSession.findExclusiveJobs(Execution processInstance)
|
Uses of Execution in org.ow2.bonita.pvm.internal.jobexecutor |
---|
Methods in org.ow2.bonita.pvm.internal.jobexecutor with parameters of type Execution | |
---|---|
java.util.List<JobImpl<?>> |
JobDbSession.findExclusiveJobs(Execution processInstance)
the list of jobs of the process instance that mustn't be concurrent |
Uses of Execution in org.ow2.bonita.pvm.internal.model |
---|
Classes in org.ow2.bonita.pvm.internal.model that implement Execution | |
---|---|
class |
ExecutionImpl
|
Methods in org.ow2.bonita.pvm.internal.model that return Execution | |
---|---|
Execution |
ExecutionImpl.createExecution(Execution parent)
|
Execution |
ExecutionImpl.createExecution(java.lang.String name,
Execution parent)
|
Methods in org.ow2.bonita.pvm.internal.model with parameters of type Execution | |
---|---|
void |
ExecutionImpl.addExecution(Execution execution)
|
Execution |
ExecutionImpl.createExecution(Execution parent)
|
Execution |
ExecutionImpl.createExecution(java.lang.String name,
Execution parent)
|
java.lang.String |
DefaultIdGenerator.createId(ProcessDefinition processDefinition,
Execution parent,
Execution execution)
|
ClientProcessInstance |
PVMProcessDefinitionImpl.createProcessInstance(java.lang.String key,
Execution superProcessExecution)
|
void |
ExecutionImpl.move(Node destination,
Execution execution)
|
void |
ExecutionImpl.removeExecution(Execution child)
|
void |
ExecutionImpl.removeExecution(Execution child,
Execution parent)
|
void |
ExecutionImpl.signal(Execution execution)
|
void |
ExecutionImpl.signal(java.util.Map<java.lang.String,java.lang.Object> parameters,
Execution execution)
|
void |
ExecutionImpl.signal(java.lang.String signalName,
Execution execution)
|
void |
ExecutionImpl.signal(java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters,
Execution execution)
|
void |
ExecutionImpl.take(Transition transition,
Execution execution)
|
Uses of Execution in org.ow2.bonita.pvm.internal.script |
---|
Methods in org.ow2.bonita.pvm.internal.script with parameters of type Execution | |
---|---|
java.lang.Object |
ScriptManager.evaluate(java.lang.String script,
Execution execution,
java.lang.String language)
evaluates the script with the given language. |
java.lang.Object |
ScriptManager.evaluateExpression(java.lang.String expression,
Execution execution,
java.lang.String language)
evaluates the expression with
the given language or with the defaultExpressionLanguage if the given
language is null. |
java.lang.Object |
ScriptManager.evaluateScript(java.lang.String script,
Execution execution,
java.lang.String language)
evaluates the script with the
given language or with the defaultScriptLanguage if the given language is
null. |
Uses of Execution in org.ow2.bonita.pvm.internal.svc |
---|
Methods in org.ow2.bonita.pvm.internal.svc that return Execution | |
---|---|
Execution |
CommandExecutionService.findExecution(java.lang.String executionId)
|
Execution |
CommandExecutionService.findExecution(java.lang.String processDefinitionName,
java.lang.String key)
|
Execution |
CommandExecutionService.setVariable(java.lang.String executionId,
java.lang.String name,
java.lang.Object value)
|
Execution |
CommandExecutionService.setVariables(java.lang.String executionId,
java.util.Map<java.lang.String,java.lang.Object> variables)
|
Execution |
CommandExecutionService.signalExecution(long executionDbid)
|
Execution |
CommandExecutionService.signalExecution(long executionDbid,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.signalExecution(long executionDbid,
java.lang.String signalName)
|
Execution |
CommandExecutionService.signalExecution(long executionDbid,
java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.signalExecution(java.lang.String executionId)
|
Execution |
CommandExecutionService.signalExecution(java.lang.String executionId,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.signalExecution(java.lang.String executionId,
java.lang.String signalName)
|
Execution |
CommandExecutionService.signalExecution(java.lang.String executionId,
java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey)
|
Execution |
CommandExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.lang.String signalName)
|
Execution |
CommandExecutionService.signalExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey,
java.lang.String signalName,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
Execution |
CommandExecutionService.startExecution(java.lang.String processDefinitionId)
|
Execution |
CommandExecutionService.startExecution(java.lang.String processDefinitionId,
java.util.Map<java.lang.String,java.lang.Object> variables)
|
Execution |
CommandExecutionService.startExecution(java.lang.String processDefinitionId,
java.util.Map<java.lang.String,java.lang.Object> variables,
java.lang.String executionKey)
|
Execution |
CommandExecutionService.startExecution(java.lang.String processDefinitionId,
java.lang.String executionKey)
|
Execution |
CommandExecutionService.startExecutionInLatest(java.lang.String processDefinitionName)
|
Execution |
CommandExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.util.Map<java.lang.String,java.lang.Object> variables)
|
Execution |
CommandExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.util.Map<java.lang.String,java.lang.Object> variables,
java.lang.String executionKey)
|
Execution |
CommandExecutionService.startExecutionInLatest(java.lang.String processDefinitionName,
java.lang.String executionKey)
|
Uses of Execution in org.ow2.bonita.pvm.job |
---|
Methods in org.ow2.bonita.pvm.job that return Execution | |
---|---|
Execution |
JobTestHelper.executeMessage(long executionDbid)
|
Execution |
JobTestHelper.executeTimer(long timerDbid)
|
Execution |
Job.getExecution()
|
Execution |
Job.getProcessInstance()
|
Uses of Execution in org.ow2.bonita.pvm.listener |
---|
Subinterfaces of Execution in org.ow2.bonita.pvm.listener | |
---|---|
interface |
EventListenerExecution
view upon an path of execution exposed to
EventListener implementations. |
Uses of Execution in org.ow2.bonita.pvm.model |
---|
Subinterfaces of Execution in org.ow2.bonita.pvm.model | |
---|---|
interface |
OpenExecution
execution that opens up access to the related objects in the execution and process definition model. |
Methods in org.ow2.bonita.pvm.model with parameters of type Execution | |
---|---|
java.lang.String |
IdGenerator.createId(ProcessDefinition processDefinition,
Execution parent,
Execution execution)
generates a unique id for the given execution. |
java.lang.String |
ExecutionKeyGenerator.createKey(ProcessDefinition processDefinition,
Execution execution,
java.lang.String executionRef)
|
Uses of Execution in org.ow2.bonita.pvm.processlog |
---|
Fields in org.ow2.bonita.pvm.processlog declared as Execution | |
---|---|
protected Execution |
ProcessLogImpl.execution
|
protected Execution |
ProcessLogImpl.processInstance
|
Methods in org.ow2.bonita.pvm.processlog that return Execution | |
---|---|
Execution |
ProcessLog.getExecution()
|
Execution |
ProcessLogImpl.getExecution()
|
Execution |
ProcessLog.getProcessInstance()
|
Execution |
ProcessLogImpl.getProcessInstance()
|
Methods in org.ow2.bonita.pvm.processlog with parameters of type Execution | |
---|---|
void |
ProcessLog.setExecution(Execution execution)
|
Uses of Execution in org.ow2.bonita.pvm.session |
---|
Methods in org.ow2.bonita.pvm.session that return Execution | |
---|---|
Execution |
PvmDbSession.findExecutionByKey(java.lang.String processDefinitionName,
java.lang.String executionKey)
the execution uniquely identified by the given processDefinition name and the execution key. |
Uses of Execution in org.ow2.bonita.pvm.test.base |
---|
Methods in org.ow2.bonita.pvm.test.base with parameters of type Execution | |
---|---|
ExecutionImpl |
EnvironmentDbTestCase.reload(Execution execution)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |