Uses of Interface
org.camunda.bpm.engine.history.UserOperationLogQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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.Classes related to the
HistoryService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of UserOperationLogQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionHistoryService.createUserOperationLogQuery()
Creates a new programmatic query to search forUserOperationLogEntry
instances. -
Uses of UserOperationLogQuery in org.camunda.bpm.engine.history
Modifier and TypeMethodDescriptionUserOperationLogQuery.afterTimestamp
(Date after) Query entries after the time stamp.Query entries which are existing for the batch.UserOperationLogQuery.beforeTimestamp
(Date before) Query entries before the time stamp.UserOperationLogQuery.caseDefinitionId
(String caseDefinitionId) Query entries which are existing for the given case definition id.UserOperationLogQuery.caseExecutionId
(String caseExecutionId) Query entries which are existing for the given case execution.UserOperationLogQuery.caseInstanceId
(String caseInstanceId) Query entries which are existing for the given case instance.Query for operations of the given category only.UserOperationLogQuery.categoryIn
(String... categories) Query for operations of given categories only.UserOperationLogQuery.deploymentId
(String deploymentId) Query entries which are existing for the given deployment id.UserOperationLogQuery.entityType
(String entityType) Query for operations on entities of a given type only.UserOperationLogQuery.entityTypeIn
(String... entityTypes) Query for operations on entities of a given type only.UserOperationLogQuery.executionId
(String executionId) Query entries which are existing for the given execution.UserOperationLogQuery.externalTaskId
(String externalTaskId) Query entries which are existing for the external task.UserOperationLogQuery.jobDefinitionId
(String jobDefinitionId) Query entries which are existing for the job definition.Query entries which are existing for the job.UserOperationLogQuery.operationId
(String operationId) Query entries of a composite operation.UserOperationLogQuery.operationType
(String operationType) Query for operations of a given type only.UserOperationLogQuery.orderByTimestamp()
Order by time stamp (needs to be followed byQuery.asc()
orQuery.desc()
).UserOperationLogQuery.processDefinitionId
(String processDefinitionId) Query entries which are existing for the given process definition id.UserOperationLogQuery.processDefinitionKey
(String processDefinitionKey) Query entries which are operate on all process definitions of the given key.UserOperationLogQuery.processInstanceId
(String processInstanceId) Query entries which are existing for the given process instance.Query entries that changed a property.Query entries which are existing for the task.UserOperationLogQuery.tenantIdIn
(String... tenantIds) Only select entries which have the given tenant id.Query entries which are existing for the user.UserOperationLogQuery.withoutTenantId()
Only selects entries that have no tenant id. -
Uses of UserOperationLogQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionUserOperationLogQueryImpl.afterTimestamp
(Date after) UserOperationLogQueryImpl.beforeTimestamp
(Date before) UserOperationLogQueryImpl.caseDefinitionId
(String caseDefinitionId) UserOperationLogQueryImpl.caseExecutionId
(String caseExecutionId) UserOperationLogQueryImpl.caseInstanceId
(String caseInstanceId) UserOperationLogQueryImpl.categoryIn
(String... categories) HistoryServiceImpl.createUserOperationLogQuery()
UserOperationLogQueryImpl.deploymentId
(String deploymentId) UserOperationLogQueryImpl.entityType
(String entityType) UserOperationLogQueryImpl.entityTypeIn
(String... entityTypes) UserOperationLogQueryImpl.executionId
(String executionId) UserOperationLogQueryImpl.externalTaskId
(String externalTaskId) UserOperationLogQueryImpl.jobDefinitionId
(String jobDefinitionId) UserOperationLogQueryImpl.operationId
(String operationId) UserOperationLogQueryImpl.operationType
(String operationType) UserOperationLogQueryImpl.orderByTimestamp()
UserOperationLogQueryImpl.processDefinitionId
(String processDefinitionId) UserOperationLogQueryImpl.processDefinitionKey
(String processDefinitionKey) UserOperationLogQueryImpl.processInstanceId
(String processInstanceId) UserOperationLogQueryImpl.tenantIdIn
(String... tenantIds) UserOperationLogQueryImpl.withoutTenantId()
-
Uses of UserOperationLogQuery in org.camunda.bpm.engine.rest.dto.history
Modifier and TypeMethodDescriptionprotected UserOperationLogQuery
UserOperationLogQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
UserOperationLogQueryDto.applyFilters
(UserOperationLogQuery query) protected void
UserOperationLogQueryDto.applySortBy
(UserOperationLogQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine)