public interface UserOperationLogQuery extends Query<UserOperationLogQuery,UserOperationLogEntry>
UserOperationLogEntry
instances.Modifier and Type | Method and Description |
---|---|
UserOperationLogQuery |
afterTimestamp(Date after)
Query entries after the time stamp.
|
UserOperationLogQuery |
beforeTimestamp(Date before)
Query entries before the time stamp.
|
UserOperationLogQuery |
entityType(String entityType)
Query for operations on entities of a given type only.
|
UserOperationLogQuery |
executionId(String executionId)
Query entries which are existing for the given execution.
|
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 by
Query.asc() or Query.desc() ). |
UserOperationLogQuery |
processDefinitionId(String processDefinitionId)
Query entries which are existing for the given process definition id.
|
UserOperationLogQuery |
processInstanceId(String processInstanceId)
Query entries which are existing for the given process instance.
|
UserOperationLogQuery |
property(String property)
Query entries that changed a property.
|
UserOperationLogQuery |
taskId(String taskId)
Query entries which are existing for the task.
|
UserOperationLogQuery |
userId(String userId)
Query entries which are existing for the user.
|
UserOperationLogQuery entityType(String entityType)
UserOperationLogQuery operationType(String operationType)
UserOperationLogEntry
class for a list of constants of supported operations.UserOperationLogQuery processDefinitionId(String processDefinitionId)
UserOperationLogQuery processInstanceId(String processInstanceId)
UserOperationLogQuery executionId(String executionId)
UserOperationLogQuery taskId(String taskId)
UserOperationLogQuery userId(String userId)
UserOperationLogQuery operationId(String operationId)
TaskService.saveTask(org.camunda.bpm.engine.task.Task)
which will be logged as separate OperationLogEntries
with the same 'operationId'UserOperationLogQuery property(String property)
UserOperationLogQuery afterTimestamp(Date after)
UserOperationLogQuery beforeTimestamp(Date before)
UserOperationLogQuery orderByTimestamp()
Query.asc()
or Query.desc()
).Copyright © 2015. All rights reserved.