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 HistoricExternalTaskLogQuery
activityIdIn(String... activityIds)
Only select historic external task log entries which are associated with one of the given activity ids.HistoricExternalTaskLogQuery
activityInstanceIdIn(String... activityInstanceIds)
Only select historic external task log entries which are associated with one of the given activity instance ids.HistoricExternalTaskLogQuery
creationLog()
Only select created historic external task log entries.HistoricExternalTaskLogQuery
deletionLog()
Only select deleted historic external task log entries.HistoricExternalTaskLogQuery
errorMessage(String errorMessage)
Only select historic external task log entries with the given error message.HistoricExternalTaskLogQuery
executionIdIn(String... executionIds)
Only select historic external task log entries which are associated with one of the given execution ids.HistoricExternalTaskLogQuery
externalTaskId(String taskId)
Only select historic external task log entries with the given external task id.HistoricExternalTaskLogQuery
failureLog()
Only select failed historic external task log entries.HistoricExternalTaskLogQuery
logId(String historicExternalTaskLogId)
Only select historic external task log entries with the id.HistoricExternalTaskLogQuery
orderByActivityId()
Order by activity id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByActivityInstanceId()
Order by activity instance id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByExecutionId()
Order by execution id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByExternalTaskId()
Order by external task id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByPriority()
Order by external task priority (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByProcessDefinitionId()
Order by process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByProcessInstanceId()
Order by process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByRetries()
Order by external task retries (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByTimestamp()
Order by timestamp (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByTopicName()
Order by topic name (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
orderByWorkerId()
Order by worker id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricExternalTaskLogQuery
priorityHigherThanOrEquals(long priority)
Only select log entries where the external task had a priority higher than or equal to the given priority.HistoricExternalTaskLogQuery
priorityLowerThanOrEquals(long priority)
Only select log entries where the external task had a priority lower than or equal to the given priority.HistoricExternalTaskLogQuery
processDefinitionId(String processDefinitionId)
Only select historic external task log entries with the process definition id.HistoricExternalTaskLogQuery
processDefinitionKey(String processDefinitionKey)
Only select historic external task log entries with the process instance key.HistoricExternalTaskLogQuery
processInstanceId(String processInstanceId)
Only select historic external task log entries with the process instance id.HistoricExternalTaskLogQuery
successLog()
Only select successful historic external task log entries.HistoricExternalTaskLogQuery
tenantIdIn(String... tenantIds)
Only select historic external task log entries that belong to one of the given tenant ids.HistoricExternalTaskLogQuery
topicName(String topicName)
Only select historic external task log entries with the given topic name.HistoricExternalTaskLogQuery
withoutTenantId()
Only selects historic external task log entries that have no tenant id.HistoricExternalTaskLogQuery
workerId(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.
-
-