Uses of Interface
org.camunda.bpm.engine.history.UserOperationLogQuery
-
Packages that use UserOperationLogQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: 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 theHistoryService
.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.rest.dto.history -
-
Uses of UserOperationLogQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return UserOperationLogQuery Modifier and Type Method Description UserOperationLogQuery
HistoryService. createUserOperationLogQuery()
Creates a new programmatic query to search forUserOperationLogEntry
instances. -
Uses of UserOperationLogQuery in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history that return UserOperationLogQuery Modifier and Type Method Description UserOperationLogQuery
UserOperationLogQuery. afterTimestamp(Date after)
Query entries after the time stamp.UserOperationLogQuery
UserOperationLogQuery. batchId(String batchId)
Query entries which are existing for the batch.UserOperationLogQuery
UserOperationLogQuery. beforeTimestamp(Date before)
Query entries before the time stamp.UserOperationLogQuery
UserOperationLogQuery. caseDefinitionId(String caseDefinitionId)
Query entries which are existing for the given case definition id.UserOperationLogQuery
UserOperationLogQuery. caseExecutionId(String caseExecutionId)
Query entries which are existing for the given case execution.UserOperationLogQuery
UserOperationLogQuery. caseInstanceId(String caseInstanceId)
Query entries which are existing for the given case instance.UserOperationLogQuery
UserOperationLogQuery. category(String category)
Query for operations of the given category only.UserOperationLogQuery
UserOperationLogQuery. categoryIn(String... categories)
Query for operations of given categories only.UserOperationLogQuery
UserOperationLogQuery. deploymentId(String deploymentId)
Query entries which are existing for the given deployment id.UserOperationLogQuery
UserOperationLogQuery. entityType(String entityType)
Query for operations on entities of a given type only.UserOperationLogQuery
UserOperationLogQuery. entityTypeIn(String... entityTypes)
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. externalTaskId(String externalTaskId)
Query entries which are existing for the external task.UserOperationLogQuery
UserOperationLogQuery. jobDefinitionId(String jobDefinitionId)
Query entries which are existing for the job definition.UserOperationLogQuery
UserOperationLogQuery. jobId(String jobId)
Query entries which are existing for the job.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 byQuery.asc()
orQuery.desc()
).UserOperationLogQuery
UserOperationLogQuery. processDefinitionId(String processDefinitionId)
Query entries which are existing for the given process definition id.UserOperationLogQuery
UserOperationLogQuery. processDefinitionKey(String processDefinitionKey)
Query entries which are operate on all process definitions of the given key.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. -
Uses of UserOperationLogQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement UserOperationLogQuery Modifier and Type Class Description class
UserOperationLogQueryImpl
Methods in org.camunda.bpm.engine.impl that return UserOperationLogQuery Modifier and Type Method Description UserOperationLogQuery
UserOperationLogQueryImpl. afterTimestamp(Date after)
UserOperationLogQuery
UserOperationLogQueryImpl. batchId(String batchId)
UserOperationLogQuery
UserOperationLogQueryImpl. beforeTimestamp(Date before)
UserOperationLogQuery
UserOperationLogQueryImpl. caseDefinitionId(String caseDefinitionId)
UserOperationLogQuery
UserOperationLogQueryImpl. caseExecutionId(String caseExecutionId)
UserOperationLogQuery
UserOperationLogQueryImpl. caseInstanceId(String caseInstanceId)
UserOperationLogQuery
UserOperationLogQueryImpl. category(String category)
UserOperationLogQuery
UserOperationLogQueryImpl. categoryIn(String... categories)
UserOperationLogQuery
HistoryServiceImpl. createUserOperationLogQuery()
UserOperationLogQuery
UserOperationLogQueryImpl. deploymentId(String deploymentId)
UserOperationLogQuery
UserOperationLogQueryImpl. entityType(String entityType)
UserOperationLogQuery
UserOperationLogQueryImpl. entityTypeIn(String... entityTypes)
UserOperationLogQuery
UserOperationLogQueryImpl. executionId(String executionId)
UserOperationLogQuery
UserOperationLogQueryImpl. externalTaskId(String externalTaskId)
UserOperationLogQuery
UserOperationLogQueryImpl. jobDefinitionId(String jobDefinitionId)
UserOperationLogQuery
UserOperationLogQueryImpl. jobId(String jobId)
UserOperationLogQuery
UserOperationLogQueryImpl. operationId(String operationId)
UserOperationLogQuery
UserOperationLogQueryImpl. operationType(String operationType)
UserOperationLogQuery
UserOperationLogQueryImpl. orderByTimestamp()
UserOperationLogQuery
UserOperationLogQueryImpl. processDefinitionId(String processDefinitionId)
UserOperationLogQuery
UserOperationLogQueryImpl. processDefinitionKey(String processDefinitionKey)
UserOperationLogQuery
UserOperationLogQueryImpl. processInstanceId(String processInstanceId)
UserOperationLogQuery
UserOperationLogQueryImpl. property(String property)
UserOperationLogQuery
UserOperationLogQueryImpl. taskId(String taskId)
UserOperationLogQuery
UserOperationLogQueryImpl. userId(String userId)
-
Uses of UserOperationLogQuery in org.camunda.bpm.engine.rest.dto.history
Methods in org.camunda.bpm.engine.rest.dto.history that return UserOperationLogQuery Modifier and Type Method Description protected UserOperationLogQuery
UserOperationLogQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.history with parameters of type UserOperationLogQuery Modifier and Type Method Description protected void
UserOperationLogQueryDto. applyFilters(UserOperationLogQuery query)
protected void
UserOperationLogQueryDto. applySortBy(UserOperationLogQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-