| Package | Description |
|---|---|
| org.activiti.engine |
Public API of the Activiti 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 tasksIdentityService: Used for managing Users,
Groups and the relations between themManagementService: Exposes engine admin and maintenance operations,
which have no relation to the runtime exection of business processesHistoryService: 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.compatibility | |
| org.activiti.engine.delegate |
Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegates. |
| 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 |
| 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 |
Activiti5CompatibilityHandler.getExecutionVariableInstance(String executionId,
String variableName,
boolean isLocal) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
Activiti5CompatibilityHandler.getExecutionVariableInstances(String executionId,
Collection<String> variableNames,
boolean isLocal) |
| 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 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 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 |
|---|---|
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 |
GetTaskVariableInstanceCmd.execute(CommandContext commandContext) |
VariableInstance |
GetExecutionVariableInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,VariableInstance> |
GetTaskVariableInstancesCmd.execute(CommandContext commandContext) |
List<VariableInstance> |
GetTasksLocalVariablesCmd.execute(CommandContext commandContext) |
Map<String,VariableInstance> |
GetExecutionVariableInstancesCmd.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 | 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.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) |
Copyright © 2016 Alfresco. All rights reserved.