Package | Description |
---|---|
org.camunda.bpm.engine |
Public API of the camunda BPM 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 sRuntimeService :
For starting and searching ProcessInstance sTaskService :
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 execution 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.camunda.bpm.engine.history |
Classes related to the
HistoryService . |
org.camunda.bpm.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
org.camunda.bpm.engine.rest.dto.history |
Modifier and Type | Method and Description |
---|---|
UserOperationLogQuery |
HistoryService.createUserOperationLogQuery()
Creates a new programmatic query to search for
UserOperationLogEntry instances. |
Modifier and Type | Method and Description |
---|---|
UserOperationLogQuery |
UserOperationLogQuery.afterTimestamp(Date after)
Query entries after the time stamp.
|
UserOperationLogQuery |
UserOperationLogQuery.beforeTimestamp(Date before)
Query entries before the time stamp.
|
UserOperationLogQuery |
UserOperationLogQuery.entityType(String entityType)
Query for operations on entities of a given type only.
|
UserOperationLogQuery |
UserOperationLogQuery.executionId(String executionId)
Query entries which are existing for the given execution.
|
UserOperationLogQuery |
UserOperationLogQuery.operationId(String operationId)
Query entries of a composite operation.
|
UserOperationLogQuery |
UserOperationLogQuery.operationType(String operationType)
Query for operations of a given type only.
|
UserOperationLogQuery |
UserOperationLogQuery.orderByTimestamp()
Order by time stamp (needs to be followed by
Query.asc() or Query.desc() ). |
UserOperationLogQuery |
UserOperationLogQuery.processDefinitionId(String processDefinitionId)
Query entries which are existing for the given process definition id.
|
UserOperationLogQuery |
UserOperationLogQuery.processInstanceId(String processInstanceId)
Query entries which are existing for the given process instance.
|
UserOperationLogQuery |
UserOperationLogQuery.property(String property)
Query entries that changed a property.
|
UserOperationLogQuery |
UserOperationLogQuery.taskId(String taskId)
Query entries which are existing for the task.
|
UserOperationLogQuery |
UserOperationLogQuery.userId(String userId)
Query entries which are existing for the user.
|
Modifier and Type | Class and Description |
---|---|
class |
UserOperationLogQueryImpl |
Modifier and Type | Method and Description |
---|---|
UserOperationLogQuery |
UserOperationLogQueryImpl.afterTimestamp(Date after) |
UserOperationLogQuery |
UserOperationLogQueryImpl.beforeTimestamp(Date before) |
UserOperationLogQuery |
HistoryServiceImpl.createUserOperationLogQuery() |
UserOperationLogQuery |
UserOperationLogQueryImpl.entityType(String entityType) |
UserOperationLogQuery |
UserOperationLogQueryImpl.executionId(String executionId) |
UserOperationLogQuery |
UserOperationLogQueryImpl.operationId(String operationId) |
UserOperationLogQuery |
UserOperationLogQueryImpl.operationType(String operationType) |
UserOperationLogQuery |
UserOperationLogQueryImpl.orderByTimestamp() |
UserOperationLogQuery |
UserOperationLogQueryImpl.processDefinitionId(String processDefinitionId) |
UserOperationLogQuery |
UserOperationLogQueryImpl.processInstanceId(String processInstanceId) |
UserOperationLogQuery |
UserOperationLogQueryImpl.property(String property) |
UserOperationLogQuery |
UserOperationLogQueryImpl.taskId(String taskId) |
UserOperationLogQuery |
UserOperationLogQueryImpl.userId(String userId) |
Modifier and Type | Method and Description |
---|---|
protected UserOperationLogQuery |
UserOperationLogQueryDto.createNewQuery(ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected void |
UserOperationLogQueryDto.applyFilters(UserOperationLogQuery query) |
protected void |
UserOperationLogQueryDto.applySortingOptions(UserOperationLogQuery query) |
Copyright © 2015. All rights reserved.