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 Deployment s RuntimeService : For starting and searching ProcessInstance s TaskService : Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService : Used for managing User s,
Group s 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. |
Modifier and Type | Method and Description |
---|---|
DataObject |
TaskService.getDataObject(String taskId,
String dataObject)
The DataObject.
|
DataObject |
RuntimeService.getDataObject(String executionId,
String dataObject)
The DataObject.
|
DataObject |
TaskService.getDataObject(String taskId,
String dataObjectName,
String locale,
boolean withLocalizationFallback)
The DataObject.
|
DataObject |
RuntimeService.getDataObject(String executionId,
String dataObjectName,
String locale,
boolean withLocalizationFallback)
The DataObject.
|
DataObject |
RuntimeService.getDataObjectLocal(String executionId,
String dataObjectName)
The DataObject for an execution.
|
DataObject |
RuntimeService.getDataObjectLocal(String executionId,
String dataObjectName,
String locale,
boolean withLocalizationFallback)
The DataObject for an execution.
|
Modifier and Type | Method and Description |
---|---|
Map<String,DataObject> |
TaskService.getDataObjects(String taskId)
All DataObjects visible from the given execution scope (including parent scopes).
|
Map<String,DataObject> |
RuntimeService.getDataObjects(String executionId)
All DataObjects visible from the given execution scope (including parent scopes).
|
Map<String,DataObject> |
TaskService.getDataObjects(String taskId,
Collection<String> dataObjectNames)
The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given task scope (including parent scopes).
|
Map<String,DataObject> |
RuntimeService.getDataObjects(String executionId,
Collection<String> dataObjectNames)
The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given execution scope (including parent scopes).
|
Map<String,DataObject> |
TaskService.getDataObjects(String taskId,
Collection<String> dataObjectNames,
String locale,
boolean withLocalizationFallback)
The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given task scope (including parent scopes).
|
Map<String,DataObject> |
RuntimeService.getDataObjects(String executionId,
Collection<String> dataObjectNames,
String locale,
boolean withLocalizationFallback)
The DataObjects for all given dataObjectNames, takes all dataObjects into account which are visible from the given execution scope (including parent scopes).
|
Map<String,DataObject> |
TaskService.getDataObjects(String taskId,
String locale,
boolean withLocalizationFallback)
All DataObjects visible from the given task scope (including parent scopes).
|
Map<String,DataObject> |
RuntimeService.getDataObjects(String executionId,
String locale,
boolean withLocalizationFallback)
All DataObjects visible from the given execution scope (including parent scopes).
|
Map<String,DataObject> |
RuntimeService.getDataObjectsLocal(String executionId)
All DataObject values that are defined in the execution scope, without taking outer scopes into account.
|
Map<String,DataObject> |
RuntimeService.getDataObjectsLocal(String executionId,
Collection<String> dataObjects)
The DataObjects for the given dataObjectNames only taking the given execution scope into account, not looking in outer scopes.
|
Map<String,DataObject> |
RuntimeService.getDataObjectsLocal(String executionId,
Collection<String> dataObjectNames,
String locale,
boolean withLocalizationFallback)
The DataObjects for the given dataObjectNames only taking the given execution scope into account, not looking in outer scopes.
|
Map<String,DataObject> |
RuntimeService.getDataObjectsLocal(String executionId,
String locale,
boolean withLocalizationFallback)
All DataObject values that are defined in the execution scope, without taking outer scopes into account.
|
Copyright © 2017 Alfresco. All rights reserved.