Uses of Interface
org.camunda.bpm.engine.runtime.Execution
-
Packages that use Execution Package Description org.camunda.bpm.engine.cdi org.camunda.bpm.engine.cdi.impl.context org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.runtime org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService
. -
-
Uses of Execution in org.camunda.bpm.engine.cdi
Methods in org.camunda.bpm.engine.cdi that return Execution Modifier and Type Method Description Execution
BusinessProcess. getExecution()
Returns the currently associated execution or 'null'Execution
CurrentProcessInstance. getExecution()
Returns the currently associated execution or 'null'Methods in org.camunda.bpm.engine.cdi with parameters of type Execution Modifier and Type Method Description void
BusinessProcess. setExecution(Execution execution)
-
Uses of Execution in org.camunda.bpm.engine.cdi.impl.context
Fields in org.camunda.bpm.engine.cdi.impl.context declared as Execution Modifier and Type Field Description protected Execution
ScopedAssociation. execution
Methods in org.camunda.bpm.engine.cdi.impl.context that return Execution Modifier and Type Method Description Execution
ContextAssociationManager. getExecution()
get the current executionExecution
DefaultContextAssociationManager. getExecution()
Execution
ScopedAssociation. getExecution()
Methods in org.camunda.bpm.engine.cdi.impl.context with parameters of type Execution Modifier and Type Method Description void
ContextAssociationManager. setExecution(Execution execution)
associate with the provided executionvoid
DefaultContextAssociationManager. setExecution(Execution execution)
void
ScopedAssociation. setExecution(Execution execution)
-
Uses of Execution in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return types with arguments of type Execution Modifier and Type Method Description List<Execution>
ExecutionQueryImpl. executeList(CommandContext commandContext, Page page)
List<Execution>
NativeExecutionQueryImpl. executeList(CommandContext commandContext, Map<String,Object> parameterMap, int firstResult, int maxResults)
-
Uses of Execution in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Execution Modifier and Type Class Description class
ExecutionEntity
class
ProcessInstanceWithVariablesImpl
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Execution Modifier and Type Method Description List<Execution>
ExecutionManager. findExecutionsByNativeQuery(Map<String,Object> parameterMap, int firstResult, int maxResults)
-
Uses of Execution in org.camunda.bpm.engine.impl.runtime
Fields in org.camunda.bpm.engine.impl.runtime declared as Execution Modifier and Type Field Description protected Execution
MessageCorrelationResultImpl. execution
Methods in org.camunda.bpm.engine.impl.runtime that return Execution Modifier and Type Method Description Execution
CorrelationHandlerResult. getExecution()
Execution
MessageCorrelationResultImpl. getExecution()
-
Uses of Execution in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type Execution Modifier and Type Method Description static ExecutionDto
ExecutionDto. fromExecution(Execution execution)
-
Uses of Execution in org.camunda.bpm.engine.runtime
Subinterfaces of Execution in org.camunda.bpm.engine.runtime Modifier and Type Interface Description interface
ProcessInstance
Represents one execution of aProcessDefinition
.interface
ProcessInstanceWithVariables
Represents a process instance with the corresponding latest variables.Methods in org.camunda.bpm.engine.runtime that return Execution Modifier and Type Method Description Execution
MessageCorrelationResult. getExecution()
Returns the execution entity on which the message was correlated to.
-