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. |
org.activiti.engine.impl.history |
Modifier and Type | Field and Description |
---|---|
protected HistoryLevel |
ProcessEngineConfiguration.historyLevel |
Modifier and Type | Method and Description |
---|---|
HistoryLevel |
ProcessEngineConfiguration.getHistoryLevel() |
Modifier and Type | Method and Description |
---|---|
ProcessEngineConfiguration |
ProcessEngineConfiguration.setHistoryLevel(HistoryLevel historyLevel) |
Modifier and Type | Method and Description |
---|---|
static HistoryLevel |
HistoryLevel.getHistoryLevelForKey(String key) |
static HistoryLevel |
HistoryLevel.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistoryLevel[] |
HistoryLevel.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
HistoryLevel.isAtLeast(HistoryLevel level)
Checks if the given level is the same as, or higher in order than the
level this method is executed on.
|
boolean |
HistoryManager.isHistoryLevelAtLeast(HistoryLevel level) |
boolean |
DefaultHistoryManager.isHistoryLevelAtLeast(HistoryLevel level) |
Copyright © 2016 Alfresco. All rights reserved.