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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups 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 UserOperationLogQueryHistoryService. createUserOperationLogQuery()Creates a new programmatic query to search forUserOperationLogEntryinstances. -
Uses of UserOperationLogQuery in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history that return UserOperationLogQuery Modifier and Type Method Description UserOperationLogQueryUserOperationLogQuery. afterTimestamp(java.util.Date after)Query entries after the time stamp.UserOperationLogQueryUserOperationLogQuery. batchId(java.lang.String batchId)Query entries which are existing for the batch.UserOperationLogQueryUserOperationLogQuery. beforeTimestamp(java.util.Date before)Query entries before the time stamp.UserOperationLogQueryUserOperationLogQuery. caseDefinitionId(java.lang.String caseDefinitionId)Query entries which are existing for the given case definition id.UserOperationLogQueryUserOperationLogQuery. caseExecutionId(java.lang.String caseExecutionId)Query entries which are existing for the given case execution.UserOperationLogQueryUserOperationLogQuery. caseInstanceId(java.lang.String caseInstanceId)Query entries which are existing for the given case instance.UserOperationLogQueryUserOperationLogQuery. category(java.lang.String category)Query for operations of the given category only.UserOperationLogQueryUserOperationLogQuery. categoryIn(java.lang.String... categories)Query for operations of given categories only.UserOperationLogQueryUserOperationLogQuery. deploymentId(java.lang.String deploymentId)Query entries which are existing for the given deployment id.UserOperationLogQueryUserOperationLogQuery. entityType(java.lang.String entityType)Query for operations on entities of a given type only.UserOperationLogQueryUserOperationLogQuery. entityTypeIn(java.lang.String... entityTypes)Query for operations on entities of a given type only.UserOperationLogQueryUserOperationLogQuery. executionId(java.lang.String executionId)Query entries which are existing for the given execution.UserOperationLogQueryUserOperationLogQuery. externalTaskId(java.lang.String externalTaskId)Query entries which are existing for the external task.UserOperationLogQueryUserOperationLogQuery. jobDefinitionId(java.lang.String jobDefinitionId)Query entries which are existing for the job definition.UserOperationLogQueryUserOperationLogQuery. jobId(java.lang.String jobId)Query entries which are existing for the job.UserOperationLogQueryUserOperationLogQuery. operationId(java.lang.String operationId)Query entries of a composite operation.UserOperationLogQueryUserOperationLogQuery. operationType(java.lang.String operationType)Query for operations of a given type only.UserOperationLogQueryUserOperationLogQuery. orderByTimestamp()Order by time stamp (needs to be followed byQuery.asc()orQuery.desc()).UserOperationLogQueryUserOperationLogQuery. processDefinitionId(java.lang.String processDefinitionId)Query entries which are existing for the given process definition id.UserOperationLogQueryUserOperationLogQuery. processDefinitionKey(java.lang.String processDefinitionKey)Query entries which are operate on all process definitions of the given key.UserOperationLogQueryUserOperationLogQuery. processInstanceId(java.lang.String processInstanceId)Query entries which are existing for the given process instance.UserOperationLogQueryUserOperationLogQuery. property(java.lang.String property)Query entries that changed a property.UserOperationLogQueryUserOperationLogQuery. taskId(java.lang.String taskId)Query entries which are existing for the task.UserOperationLogQueryUserOperationLogQuery. userId(java.lang.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 classUserOperationLogQueryImplMethods in org.camunda.bpm.engine.impl that return UserOperationLogQuery Modifier and Type Method Description UserOperationLogQueryUserOperationLogQueryImpl. afterTimestamp(java.util.Date after)UserOperationLogQueryUserOperationLogQueryImpl. batchId(java.lang.String batchId)UserOperationLogQueryUserOperationLogQueryImpl. beforeTimestamp(java.util.Date before)UserOperationLogQueryUserOperationLogQueryImpl. caseDefinitionId(java.lang.String caseDefinitionId)UserOperationLogQueryUserOperationLogQueryImpl. caseExecutionId(java.lang.String caseExecutionId)UserOperationLogQueryUserOperationLogQueryImpl. caseInstanceId(java.lang.String caseInstanceId)UserOperationLogQueryUserOperationLogQueryImpl. category(java.lang.String category)UserOperationLogQueryUserOperationLogQueryImpl. categoryIn(java.lang.String... categories)UserOperationLogQueryHistoryServiceImpl. createUserOperationLogQuery()UserOperationLogQueryUserOperationLogQueryImpl. deploymentId(java.lang.String deploymentId)UserOperationLogQueryUserOperationLogQueryImpl. entityType(java.lang.String entityType)UserOperationLogQueryUserOperationLogQueryImpl. entityTypeIn(java.lang.String... entityTypes)UserOperationLogQueryUserOperationLogQueryImpl. executionId(java.lang.String executionId)UserOperationLogQueryUserOperationLogQueryImpl. externalTaskId(java.lang.String externalTaskId)UserOperationLogQueryUserOperationLogQueryImpl. jobDefinitionId(java.lang.String jobDefinitionId)UserOperationLogQueryUserOperationLogQueryImpl. jobId(java.lang.String jobId)UserOperationLogQueryUserOperationLogQueryImpl. operationId(java.lang.String operationId)UserOperationLogQueryUserOperationLogQueryImpl. operationType(java.lang.String operationType)UserOperationLogQueryUserOperationLogQueryImpl. orderByTimestamp()UserOperationLogQueryUserOperationLogQueryImpl. processDefinitionId(java.lang.String processDefinitionId)UserOperationLogQueryUserOperationLogQueryImpl. processDefinitionKey(java.lang.String processDefinitionKey)UserOperationLogQueryUserOperationLogQueryImpl. processInstanceId(java.lang.String processInstanceId)UserOperationLogQueryUserOperationLogQueryImpl. property(java.lang.String property)UserOperationLogQueryUserOperationLogQueryImpl. taskId(java.lang.String taskId)UserOperationLogQueryUserOperationLogQueryImpl. userId(java.lang.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 UserOperationLogQueryUserOperationLogQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.history with parameters of type UserOperationLogQuery Modifier and Type Method Description protected voidUserOperationLogQueryDto. applyFilters(UserOperationLogQuery query)protected voidUserOperationLogQueryDto. applySortBy(UserOperationLogQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine)
-