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
Modifier and TypeMethodDescriptionactivityIdIn
(String... activityIds) Only select historic external task log entries which are associated with one of the given activity ids.activityInstanceIdIn
(String... activityInstanceIds) Only select historic external task log entries which are associated with one of the given activity instance ids.Only select created historic external task log entries.Only select deleted historic external task log entries.errorMessage
(String errorMessage) Only select historic external task log entries with the given error message.executionIdIn
(String... executionIds) Only select historic external task log entries which are associated with one of the given execution ids.externalTaskId
(String taskId) Only select historic external task log entries with the given external task id.Only select failed historic external task log entries.Only select historic external task log entries with the id.Order by activity id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by activity instance id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by execution id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by external task id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by external task priority (needs to be followed byQuery.asc()
orQuery.desc()
).Order by process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).Order by process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by external task retries (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by timestamp (needs to be followed byQuery.asc()
orQuery.desc()
).Order by topic name (needs to be followed byQuery.asc()
orQuery.desc()
).Order by worker id (needs to be followed byQuery.asc()
orQuery.desc()
).priorityHigherThanOrEquals
(long priority) Only select log entries where the external task had a priority higher than or equal to the given priority.priorityLowerThanOrEquals
(long priority) Only select log entries where the external task had a priority lower than or equal to the given priority.processDefinitionId
(String processDefinitionId) Only select historic external task log entries with the process definition id.processDefinitionKey
(String processDefinitionKey) Only select historic external task log entries with the process instance key.processInstanceId
(String processInstanceId) Only select historic external task log entries with the process instance id.Only select successful historic external task log entries.tenantIdIn
(String... tenantIds) Only select historic external task log entries that belong to one of the given tenant ids.Only select historic external task log entries with the given topic name.Only selects historic external task log entries that have no tenant id.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 Details
-
logId
Only select historic external task log entries with the id. -
externalTaskId
Only select historic external task log entries with the given external task id. -
topicName
Only select historic external task log entries with the given topic name. -
workerId
Only select historic external task log entries with the given worker id. -
errorMessage
Only select historic external task log entries with the given error message. -
activityIdIn
Only select historic external task log entries which are associated with one of the given activity ids. -
activityInstanceIdIn
Only select historic external task log entries which are associated with one of the given activity instance ids. -
executionIdIn
Only select historic external task log entries which are associated with one of the given execution ids. -
processInstanceId
Only select historic external task log entries with the process instance id. -
processDefinitionId
Only select historic external task log entries with the process definition id. -
processDefinitionKey
Only select historic external task log entries with the process instance key. -
tenantIdIn
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
Only select log entries where the external task had a priority higher than or equal to the given priority. -
priorityLowerThanOrEquals
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.
-