Uses of Interface
org.camunda.bpm.engine.history.UserOperationLogQuery

Packages that use UserOperationLogQuery
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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, 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 the HistoryService
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
 

Uses of UserOperationLogQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return UserOperationLogQuery
 UserOperationLogQuery HistoryService.createUserOperationLogQuery()
          Creates a new programmatic query to search for UserOperationLogEntry instances.
 

Uses of UserOperationLogQuery in org.camunda.bpm.engine.history
 

Methods in org.camunda.bpm.engine.history that return UserOperationLogQuery
 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.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.executionId(String executionId)
          Query entries which are existing for the given execution.
 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 by Query.asc() or Query.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
 class UserOperationLogQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return UserOperationLogQuery
 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 HistoryServiceImpl.createUserOperationLogQuery()
           
 UserOperationLogQuery UserOperationLogQueryImpl.deploymentId(String deploymentId)
           
 UserOperationLogQuery UserOperationLogQueryImpl.entityType(String entityType)
           
 UserOperationLogQuery UserOperationLogQueryImpl.executionId(String executionId)
           
 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)
           
 



Copyright © 2017 camunda services GmbH. All rights reserved.