Package org.camunda.bpm.engine.history
Interface HistoricExternalTaskLogQuery
-
- All Superinterfaces:
Query<HistoricExternalTaskLogQuery,HistoricExternalTaskLog>
- All Known Implementing Classes:
HistoricExternalTaskLogQueryImpl
public interface HistoricExternalTaskLogQuery extends Query<HistoricExternalTaskLogQuery,HistoricExternalTaskLog>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricExternalTaskLogQueryactivityIdIn(String... activityIds)Only select historic external task log entries which are associated with one of the given activity ids.HistoricExternalTaskLogQueryactivityInstanceIdIn(String... activityInstanceIds)Only select historic external task log entries which are associated with one of the given activity instance ids.HistoricExternalTaskLogQuerycreationLog()Only select created historic external task log entries.HistoricExternalTaskLogQuerydeletionLog()Only select deleted historic external task log entries.HistoricExternalTaskLogQueryerrorMessage(String errorMessage)Only select historic external task log entries with the given error message.HistoricExternalTaskLogQueryexecutionIdIn(String... executionIds)Only select historic external task log entries which are associated with one of the given execution ids.HistoricExternalTaskLogQueryexternalTaskId(String taskId)Only select historic external task log entries with the given external task id.HistoricExternalTaskLogQueryfailureLog()Only select failed historic external task log entries.HistoricExternalTaskLogQuerylogId(String historicExternalTaskLogId)Only select historic external task log entries with the id.HistoricExternalTaskLogQueryorderByActivityId()Order by activity id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByActivityInstanceId()Order by activity instance id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByExternalTaskId()Order by external task id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByPriority()Order by external task priority (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByProcessDefinitionId()Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByProcessDefinitionKey()Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByRetries()Order by external task retries (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByTimestamp()Order by timestamp (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByTopicName()Order by topic name (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQueryorderByWorkerId()Order by worker id (needs to be followed byQuery.asc()orQuery.desc()).HistoricExternalTaskLogQuerypriorityHigherThanOrEquals(long priority)Only select log entries where the external task had a priority higher than or equal to the given priority.HistoricExternalTaskLogQuerypriorityLowerThanOrEquals(long priority)Only select log entries where the external task had a priority lower than or equal to the given priority.HistoricExternalTaskLogQueryprocessDefinitionId(String processDefinitionId)Only select historic external task log entries with the process definition id.HistoricExternalTaskLogQueryprocessDefinitionKey(String processDefinitionKey)Only select historic external task log entries with the process instance key.HistoricExternalTaskLogQueryprocessInstanceId(String processInstanceId)Only select historic external task log entries with the process instance id.HistoricExternalTaskLogQuerysuccessLog()Only select successful historic external task log entries.HistoricExternalTaskLogQuerytenantIdIn(String... tenantIds)Only select historic external task log entries that belong to one of the given tenant ids.HistoricExternalTaskLogQuerytopicName(String topicName)Only select historic external task log entries with the given topic name.HistoricExternalTaskLogQuerywithoutTenantId()Only selects historic external task log entries that have no tenant id.HistoricExternalTaskLogQueryworkerId(String workerId)Only select historic external task log entries with the given worker id.-
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
-
-
-
Method Detail
-
logId
HistoricExternalTaskLogQuery logId(String historicExternalTaskLogId)
Only select historic external task log entries with the id.
-
externalTaskId
HistoricExternalTaskLogQuery externalTaskId(String taskId)
Only select historic external task log entries with the given external task id.
-
topicName
HistoricExternalTaskLogQuery topicName(String topicName)
Only select historic external task log entries with the given topic name.
-
workerId
HistoricExternalTaskLogQuery workerId(String workerId)
Only select historic external task log entries with the given worker id.
-
errorMessage
HistoricExternalTaskLogQuery errorMessage(String errorMessage)
Only select historic external task log entries with the given error message.
-
activityIdIn
HistoricExternalTaskLogQuery activityIdIn(String... activityIds)
Only select historic external task log entries which are associated with one of the given activity ids.
-
activityInstanceIdIn
HistoricExternalTaskLogQuery activityInstanceIdIn(String... activityInstanceIds)
Only select historic external task log entries which are associated with one of the given activity instance ids.
-
executionIdIn
HistoricExternalTaskLogQuery executionIdIn(String... executionIds)
Only select historic external task log entries which are associated with one of the given execution ids.
-
processInstanceId
HistoricExternalTaskLogQuery processInstanceId(String processInstanceId)
Only select historic external task log entries with the process instance id.
-
processDefinitionId
HistoricExternalTaskLogQuery processDefinitionId(String processDefinitionId)
Only select historic external task log entries with the process definition id.
-
processDefinitionKey
HistoricExternalTaskLogQuery processDefinitionKey(String processDefinitionKey)
Only select historic external task log entries with the process instance key.
-
tenantIdIn
HistoricExternalTaskLogQuery tenantIdIn(String... tenantIds)
Only select historic external task log entries that belong to one of the given tenant ids.
-
withoutTenantId
HistoricExternalTaskLogQuery withoutTenantId()
Only selects historic external task log entries that have no tenant id.
-
priorityHigherThanOrEquals
HistoricExternalTaskLogQuery priorityHigherThanOrEquals(long priority)
Only select log entries where the external task had a priority higher than or equal to the given priority.
-
priorityLowerThanOrEquals
HistoricExternalTaskLogQuery priorityLowerThanOrEquals(long priority)
Only select log entries where the external task had a priority lower than or equal to the given priority.
-
creationLog
HistoricExternalTaskLogQuery creationLog()
Only select created historic external task log entries.
-
failureLog
HistoricExternalTaskLogQuery failureLog()
Only select failed historic external task log entries.
-
successLog
HistoricExternalTaskLogQuery successLog()
Only select successful historic external task log entries.
-
deletionLog
HistoricExternalTaskLogQuery deletionLog()
Only select deleted historic external task log entries.
-
orderByTimestamp
HistoricExternalTaskLogQuery orderByTimestamp()
Order by timestamp (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByExternalTaskId
HistoricExternalTaskLogQuery orderByExternalTaskId()
Order by external task id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByRetries
HistoricExternalTaskLogQuery orderByRetries()
Order by external task retries (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByPriority
HistoricExternalTaskLogQuery orderByPriority()
Order by external task priority (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByTopicName
HistoricExternalTaskLogQuery orderByTopicName()
Order by topic name (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByWorkerId
HistoricExternalTaskLogQuery orderByWorkerId()
Order by worker id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByActivityId
HistoricExternalTaskLogQuery orderByActivityId()
Order by activity id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByActivityInstanceId
HistoricExternalTaskLogQuery orderByActivityInstanceId()
Order by activity instance id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByExecutionId
HistoricExternalTaskLogQuery orderByExecutionId()
Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByProcessInstanceId
HistoricExternalTaskLogQuery orderByProcessInstanceId()
Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByProcessDefinitionId
HistoricExternalTaskLogQuery orderByProcessDefinitionId()
Order by process definition id (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByProcessDefinitionKey
HistoricExternalTaskLogQuery orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).
-
orderByTenantId
HistoricExternalTaskLogQuery orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()). Note that the ordering of external task log entries without tenant id is database-specific.
-
-