| Package | Description |
|---|---|
| org.activiti.engine |
Public API of the Flowable version 5 engine.
It is highly recommended that the version 6 engine be used instead of the version 5 engine. Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation
can be executed:RepositoryService: Manages Deployments.RuntimeService: For starting and searching org.activiti5.engine.runtime.ProcessInstances.TaskService: Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasks.IdentityService: Used for managing Users,
org.flowable.idm.api.identity.Groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService: Exposes information about ongoing and past process instances.FormService: Access to form data and rendered forms for starting new process instances and completing tasks. |
| org.activiti.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.activiti.engine.impl.cmd | |
| org.activiti.engine.impl.el | |
| org.activiti.engine.impl.persistence.entity | |
| org.activiti.engine.impl.pvm.runtime | |
| org.flowable.cmmn.api | |
| org.flowable.cmmn.api.delegate | |
| org.flowable.cmmn.engine.impl | |
| org.flowable.cmmn.engine.impl.cmd | |
| org.flowable.cmmn.engine.impl.delegate | |
| org.flowable.cmmn.engine.impl.runtime | |
| org.flowable.cmmn.engine.impl.variable | |
| org.flowable.compatibility | |
| org.flowable.engine |
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation
can be executed:RepositoryService: Manages Deployments.RuntimeService: For starting and searching ProcessInstances.TaskService: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService: Used for managing users, groups and the relations between them.ManagementService: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService: Exposes information about ongoing and past process instances.FormService: Access to form data and rendered forms for starting new process instances and completing tasks. |
| org.flowable.engine.compatibility | |
| org.flowable.engine.delegate.variable | |
| org.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.engine.impl.bpmn.behavior | |
| org.flowable.engine.impl.cmd | |
| org.flowable.engine.impl.delegate | |
| org.flowable.engine.impl.variable | |
| org.flowable.ui.task.service.debugger | |
| org.flowable.variable.api.delegate | |
| org.flowable.variable.service.event.impl | |
| org.flowable.variable.service.impl.el | |
| org.flowable.variable.service.impl.persistence.entity |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
RuntimeService.getVariableInstance(String executionId,
String variableName)
The variable.
|
VariableInstance |
RuntimeService.getVariableInstanceLocal(String executionId,
String variableName)
The variable for an execution.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
RuntimeService.getVariableInstances(String executionId)
All variables visible from the given execution scope (including parent scopes).
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstances(String executionId,
Collection<String> variableNames)
The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes).
|
List<VariableInstance> |
RuntimeService.getVariableInstancesByExecutionIds(Set<String> executionIds)
All variables visible from the given execution scope (including parent scopes).
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstancesLocal(String executionId)
All variable values that are defined in the execution scope, without taking outer scopes into account.
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstancesLocal(String executionId,
Collection<String> variableNames)
The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes.
|
List<VariableInstance> |
TaskService.getVariableInstancesLocalByTaskIds(Set<String> taskIds)
get all variables and search only in the task scope.
|
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
RuntimeServiceImpl.getVariableInstance(String executionId,
String variableName) |
VariableInstance |
RuntimeServiceImpl.getVariableInstanceLocal(String executionId,
String variableName) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
RuntimeServiceImpl.getVariableInstances(String executionId) |
Map<String,VariableInstance> |
RuntimeServiceImpl.getVariableInstances(String executionId,
Collection<String> variableNames) |
List<VariableInstance> |
RuntimeServiceImpl.getVariableInstancesByExecutionIds(Set<String> executionIds) |
Map<String,VariableInstance> |
RuntimeServiceImpl.getVariableInstancesLocal(String executionId) |
Map<String,VariableInstance> |
RuntimeServiceImpl.getVariableInstancesLocal(String executionId,
Collection<String> variableNames) |
List<VariableInstance> |
TaskServiceImpl.getVariableInstancesLocalByTaskIds(Set<String> taskIds) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
GetExecutionVariableInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
GetExecutionVariableInstancesCmd.execute(CommandContext commandContext) |
List<VariableInstance> |
GetTasksLocalVariablesCmd.execute(CommandContext commandContext) |
List<VariableInstance> |
GetExecutionsVariablesCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
NoExecutionVariableScope.getVariableInstance(String variableName) |
VariableInstance |
NoExecutionVariableScope.getVariableInstance(String variableName,
boolean fetchAllVariables) |
VariableInstance |
NoExecutionVariableScope.getVariableInstanceLocal(String variableName) |
VariableInstance |
NoExecutionVariableScope.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances() |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances(Collection<String> variableNames) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal() |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal(Collection<String> variableNames) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables) |
| Modifier and Type | Class and Description |
|---|---|
class |
VariableInstanceEntity |
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.transientVariabes |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
VariableScopeImpl.getVariableInstance(String variableName) |
VariableInstance |
VariableScopeImpl.getVariableInstance(String variableName,
boolean fetchAllVariables) |
VariableInstance |
VariableScopeImpl.getVariableInstanceLocal(String variableName) |
VariableInstance |
VariableScopeImpl.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.collectVariableInstances(HashMap<String,VariableInstance> variables) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances() |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances(Collection<String> variableNames) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal() |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal(Collection<String> variableNames) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.collectVariableInstances(HashMap<String,VariableInstance> variables) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
ExecutionImpl.getVariableInstance(String variableName) |
VariableInstance |
ExecutionImpl.getVariableInstance(String variableName,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstances() |
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstances(Collection<String> variableNames) |
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables) |
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstancesLocal() |
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstancesLocal(Collection<String> variableNames) |
Map<String,VariableInstance> |
ExecutionImpl.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
CmmnRuntimeService.getLocalVariableInstance(String planItemInstanceId,
String variableName)
The local variable.
|
VariableInstance |
CmmnTaskService.getVariableInstance(String taskId,
String variableName)
The variable.
|
VariableInstance |
CmmnRuntimeService.getVariableInstance(String caseInstanceId,
String variableName)
The variable.
|
VariableInstance |
CmmnTaskService.getVariableInstanceLocal(String taskId,
String variableName)
The variable for a task.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
CmmnRuntimeService.getLocalVariableInstances(String planItemInstanceId)
All variable values that are defined in the plan item instance scope, without taking outer scopes into account.
|
Map<String,VariableInstance> |
CmmnTaskService.getVariableInstances(String taskId)
All variables visible from the given task scope (including parent scopes).
|
Map<String,VariableInstance> |
CmmnRuntimeService.getVariableInstances(String caseInstanceId)
All variables visible from the given case instance scope.
|
Map<String,VariableInstance> |
CmmnTaskService.getVariableInstances(String taskId,
Collection<String> variableNames)
The variable values for all given variableNames, takes all variables into account which are visible from the given task scope (including parent scopes).
|
Map<String,VariableInstance> |
CmmnTaskService.getVariableInstancesLocal(String taskId)
All variable values that are defined in the task scope, without taking outer scopes into account.
|
Map<String,VariableInstance> |
CmmnTaskService.getVariableInstancesLocal(String taskId,
Collection<String> variableNames)
The variable values for all given variableNames that are defined in the given task's scope.
|
List<VariableInstance> |
CmmnTaskService.getVariableInstancesLocalByTaskIds(Set<String> taskIds)
get all variables and search only in the task scope.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
PlanItemVariableAggregator.aggregateMultiVariables(DelegatePlanItemInstance planItemInstance,
List<? extends VariableInstance> instances,
PlanItemVariableAggregatorContext context)
Aggregated the provided variable instances into one variable value.
|
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
CmmnTaskServiceImpl.getVariableInstance(String taskId,
String variableName) |
VariableInstance |
CmmnTaskServiceImpl.getVariableInstanceLocal(String taskId,
String variableName) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
CmmnTaskServiceImpl.getVariableInstances(String taskId) |
Map<String,VariableInstance> |
CmmnTaskServiceImpl.getVariableInstances(String taskId,
Collection<String> variableNames) |
Map<String,VariableInstance> |
CmmnTaskServiceImpl.getVariableInstancesLocal(String taskId) |
Map<String,VariableInstance> |
CmmnTaskServiceImpl.getVariableInstancesLocal(String taskId,
Collection<String> variableNames) |
List<VariableInstance> |
CmmnTaskServiceImpl.getVariableInstancesLocalByTaskIds(Set<String> taskIds) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
GetPlanItemVariableInstanceCmd.execute(CommandContext commandContext) |
VariableInstance |
GetCaseVariableInstanceCmd.execute(CommandContext commandContext) |
VariableInstance |
GetTaskVariableInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
List<VariableInstance> |
GetTasksLocalVariablesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetPlanItemVariableInstancesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetTaskVariableInstancesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetCaseVariableInstancesCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
Object |
JsonPlanItemVariableAggregator.aggregateMultiVariables(DelegatePlanItemInstance planItemInstance,
List<? extends VariableInstance> instances,
PlanItemVariableAggregatorContext context) |
Object |
CmmnClassDelegate.aggregateMultiVariables(DelegatePlanItemInstance planItemInstance,
List<? extends VariableInstance> instances,
PlanItemVariableAggregatorContext context) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
CmmnRuntimeServiceImpl.getLocalVariableInstance(String planItemInstanceId,
String variableName) |
VariableInstance |
CmmnRuntimeServiceImpl.getVariableInstance(String caseInstanceId,
String variableName) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
CmmnRuntimeServiceImpl.getLocalVariableInstances(String planItemInstanceId) |
Map<String,VariableInstance> |
CmmnRuntimeServiceImpl.getVariableInstances(String caseInstanceId) |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,List<VariableInstance>> |
CmmnAggregation.groupVariableInstancesByName(List<? extends VariableInstance> instances) |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,List<VariableInstance>> |
CmmnAggregation.groupVariableInstancesByName(List<? extends VariableInstance> instances) |
static void |
CmmnAggregation.sortVariablesByCounter(List<VariableInstance> variableInstances,
List<VariableInstance> counterVariableInstances) |
static void |
CmmnAggregation.sortVariablesByCounter(List<VariableInstance> variableInstances,
List<VariableInstance> counterVariableInstances) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
DefaultFlowable5CompatibilityHandler.getExecutionVariableInstance(String executionId,
String variableName,
boolean isLocal) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
DefaultFlowable5CompatibilityHandler.getExecutionVariableInstances(String executionId,
Collection<String> variableNames,
boolean isLocal) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
TaskService.getVariableInstance(String taskId,
String variableName)
The variable.
|
VariableInstance |
RuntimeService.getVariableInstance(String executionId,
String variableName)
The variable.
|
VariableInstance |
TaskService.getVariableInstanceLocal(String taskId,
String variableName)
The variable for a task.
|
VariableInstance |
RuntimeService.getVariableInstanceLocal(String executionId,
String variableName)
The variable for an execution.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
TaskService.getVariableInstances(String taskId)
All variables visible from the given task scope (including parent scopes).
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstances(String executionId)
All variables visible from the given execution scope (including parent scopes).
|
Map<String,VariableInstance> |
TaskService.getVariableInstances(String taskId,
Collection<String> variableNames)
The variable values for all given variableNames, takes all variables into account which are visible from the given task scope (including parent scopes).
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstances(String executionId,
Collection<String> variableNames)
The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes).
|
List<VariableInstance> |
RuntimeService.getVariableInstancesByExecutionIds(Set<String> executionIds)
All variables visible from the given execution scope (including parent scopes).
|
Map<String,VariableInstance> |
TaskService.getVariableInstancesLocal(String taskId)
All variable values that are defined in the task scope, without taking outer scopes into account.
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstancesLocal(String executionId)
All variable values that are defined in the execution scope, without taking outer scopes into account.
|
Map<String,VariableInstance> |
TaskService.getVariableInstancesLocal(String taskId,
Collection<String> variableNames)
The variable values for all given variableNames that are defined in the given task's scope.
|
Map<String,VariableInstance> |
RuntimeService.getVariableInstancesLocal(String executionId,
Collection<String> variableNames)
The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes.
|
List<VariableInstance> |
TaskService.getVariableInstancesLocalByTaskIds(Set<String> taskIds)
get all variables and search only in the task scope.
|
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
Flowable5CompatibilityHandler.getExecutionVariableInstance(String executionId,
String variableName,
boolean isLocal) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
Flowable5CompatibilityHandler.getExecutionVariableInstances(String executionId,
Collection<String> variableNames,
boolean isLocal) |
| Modifier and Type | Method and Description |
|---|---|
Object |
VariableAggregator.aggregateMultiVariables(DelegateExecution execution,
List<? extends VariableInstance> instances,
VariableAggregatorContext context)
Aggregated the provided variable instances into one variable value.
|
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
TaskServiceImpl.getVariableInstance(String taskId,
String variableName) |
VariableInstance |
RuntimeServiceImpl.getVariableInstance(String executionId,
String variableName) |
VariableInstance |
TaskServiceImpl.getVariableInstanceLocal(String taskId,
String variableName) |
VariableInstance |
RuntimeServiceImpl.getVariableInstanceLocal(String executionId,
String variableName) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
MultiInstanceActivityBehavior.getLoopVariableInstance(DelegateExecution execution,
String variableName) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
GetExecutionVariableInstanceCmd.execute(CommandContext commandContext) |
VariableInstance |
GetTaskVariableInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
List<VariableInstance> |
GetTasksLocalVariablesCmd.execute(CommandContext commandContext) |
List<VariableInstance> |
GetExecutionsVariablesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetTaskVariableInstancesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetExecutionVariableInstancesCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
Object |
JsonVariableAggregator.aggregateMultiVariables(DelegateExecution execution,
List<? extends VariableInstance> instances,
VariableAggregatorContext context) |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,List<VariableInstance>> |
BpmnAggregation.groupVariableInstancesByName(List<? extends VariableInstance> instances) |
| Modifier and Type | Method and Description |
|---|---|
static Map<String,List<VariableInstance>> |
BpmnAggregation.groupVariableInstancesByName(List<? extends VariableInstance> instances) |
static void |
BpmnAggregation.sortVariablesByCounter(List<VariableInstance> variableInstances,
List<VariableInstance> counterVariableInstances) |
static void |
BpmnAggregation.sortVariablesByCounter(List<VariableInstance> variableInstances,
List<VariableInstance> counterVariableInstances) |
| Constructor and Description |
|---|
DebuggerRestVariable(VariableInstance variableInstance) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
VariableScope.getVariableInstance(String variableName)
Similar to
VariableScope.getVariable(String), but returns a VariableInstance instance, which contains more information than just the value. |
VariableInstance |
VariableScope.getVariableInstance(String variableName,
boolean fetchAllVariables)
Similar to
VariableScope.getVariable(String, boolean), but returns an instance of VariableInstance, which has some additional information beyond the value. |
VariableInstance |
VariableScope.getVariableInstanceLocal(String variableName)
Similar to
VariableScope.getVariableLocal(String), but returns an instance of VariableInstance, which has some additional information beyond the value. |
VariableInstance |
VariableScope.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables)
Similar to
VariableScope.getVariableLocal(String, boolean), but returns an instance of VariableInstance, which has some additional information beyond the value. |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
VariableScope.getVariableInstances()
Returns all variables, as instances of the
VariableInstance interface, which gives more information than only the value (type, execution id, etc.) |
Map<String,VariableInstance> |
VariableScope.getVariableInstances(Collection<String> variableNames)
Similar to
VariableScope.getVariableInstances(), but limited to only the variables with the provided names. |
Map<String,VariableInstance> |
VariableScope.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables)
Similar to
VariableScope.getVariables(Collection, boolean) but returns the variables as instances of the VariableInstance interface, which gives more information than only the value
(type, execution id, etc.) |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal()
Returns the variables local to this scope as instances of the
VariableInstance interface, which provided additional information about the variable. |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal(Collection<String> variableNames)
Similar to
VariableScope.getVariableInstances(Collection), but only for variables local to this scope. |
Map<String,VariableInstance> |
VariableScope.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables)
Similar to
VariableScope.getVariableInstances(Collection, boolean), but only for variables local to this scope. |
| Modifier and Type | Method and Description |
|---|---|
static FlowableVariableEvent |
FlowableVariableEventBuilder.createVariableEvent(FlowableEngineEventType type,
VariableInstance variableInstance,
Object variableValue,
VariableType variableType) |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
NoExecutionVariableScope.getVariableInstance(String variableName) |
VariableInstance |
NoExecutionVariableScope.getVariableInstance(String variableName,
boolean fetchAllVariables) |
VariableInstance |
NoExecutionVariableScope.getVariableInstanceLocal(String variableName) |
VariableInstance |
NoExecutionVariableScope.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances() |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances(Collection<String> variableNames) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal() |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal(Collection<String> variableNames) |
Map<String,VariableInstance> |
NoExecutionVariableScope.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
VariableInstanceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
TransientVariableInstance
A dummy implementation of
VariableInstance, used for storing transient variables on a VariableScope, as the VariableScope works with instances of VariableInstance
and not with raw key/values. |
class |
VariableInstanceEntityImpl |
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.transientVariables |
| Modifier and Type | Method and Description |
|---|---|
VariableInstance |
VariableScopeImpl.getVariableInstance(String variableName) |
VariableInstance |
VariableScopeImpl.getVariableInstance(String variableName,
boolean fetchAllVariables) |
VariableInstance |
VariableScopeImpl.getVariableInstanceLocal(String variableName) |
VariableInstance |
VariableScopeImpl.getVariableInstanceLocal(String variableName,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.collectVariableInstances(HashMap<String,VariableInstance> variables) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances() |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances(Collection<String> variableNames) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstances(Collection<String> variableNames,
boolean fetchAllVariables) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal() |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal(Collection<String> variableNames) |
Map<String,VariableInstance> |
VariableScopeImpl.getVariableInstancesLocal(Collection<String> variableNames,
boolean fetchAllVariables) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,VariableInstance> |
VariableScopeImpl.collectVariableInstances(HashMap<String,VariableInstance> variables) |
Copyright © 2023 Flowable. All rights reserved.