| 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.history |
Classes related to the
HistoryService. |
| Modifier and Type | Method and Description |
|---|---|
HistoricVariableInstanceQuery |
HistoryService.createHistoricVariableInstanceQuery()
Creates a new programmatic query to search for
HistoricVariableInstances. |
| Modifier and Type | Method and Description |
|---|---|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.excludeTaskVariables()
Only select historic process variables which were not set task-local.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.excludeVariableInitialization()
Don't initialize variable values.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.executionId(String executionId)
Only select historic process variables with the given id.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.id(String id)
Only select a historic variable with the given id.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.orderByProcessInstanceId() |
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.orderByVariableName() |
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.processInstanceId(String processInstanceId)
Only select historic process variables with the given process instance.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.taskId(String taskId)
Only select historic process variables with the given task.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableName(String variableName)
Only select historic process variables with the given variable name.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableNameLike(String variableNameLike)
Only select historic process variables where the given variable name is like.
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableValueEquals(String variableName,
Object variableValue)
only select historic process variables with the given name and value
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableValueLike(String variableName,
String variableValue)
only select historic process variables like the given name and value
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableValueLikeIgnoreCase(String variableName,
String variableValue)
only select historic process variables like the given name and value (case insensitive)
|
HistoricVariableInstanceQuery |
HistoricVariableInstanceQuery.variableValueNotEquals(String variableName,
Object variableValue)
only select historic process variables that don't have the given name and value
|
Copyright © 2016 Alfresco. All rights reserved.