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
 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 by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByActivityInstanceId()
          Order by activity instance id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByExecutionId()
          Order by execution id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByExternalTaskId()
          Order by external task id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByPriority()
          Order by external task priority (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByProcessDefinitionId()
          Order by process definition id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByProcessDefinitionKey()
          Order by process definition key (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByProcessInstanceId()
          Order by process instance id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByRetries()
          Order by external task retries (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByTimestamp()
          Order by timestamp (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByTopicName()
          Order by topic name (needs to be followed by Query.asc() or Query.desc()).
 HistoricExternalTaskLogQuery orderByWorkerId()
          Order by worker id (needs to be followed by Query.asc() or Query.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 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
 

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.


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 by Query.asc() or Query.desc()).


orderByExternalTaskId

HistoricExternalTaskLogQuery orderByExternalTaskId()
Order by external task id (needs to be followed by Query.asc() or Query.desc()).


orderByRetries

HistoricExternalTaskLogQuery orderByRetries()
Order by external task retries (needs to be followed by Query.asc() or Query.desc()).


orderByPriority

HistoricExternalTaskLogQuery orderByPriority()
Order by external task priority (needs to be followed by Query.asc() or Query.desc()).


orderByTopicName

HistoricExternalTaskLogQuery orderByTopicName()
Order by topic name (needs to be followed by Query.asc() or Query.desc()).


orderByWorkerId

HistoricExternalTaskLogQuery orderByWorkerId()
Order by worker id (needs to be followed by Query.asc() or Query.desc()).


orderByActivityId

HistoricExternalTaskLogQuery orderByActivityId()
Order by activity id (needs to be followed by Query.asc() or Query.desc()).


orderByActivityInstanceId

HistoricExternalTaskLogQuery orderByActivityInstanceId()
Order by activity instance id (needs to be followed by Query.asc() or Query.desc()).


orderByExecutionId

HistoricExternalTaskLogQuery orderByExecutionId()
Order by execution id (needs to be followed by Query.asc() or Query.desc()).


orderByProcessInstanceId

HistoricExternalTaskLogQuery orderByProcessInstanceId()
Order by process instance id (needs to be followed by Query.asc() or Query.desc()).


orderByProcessDefinitionId

HistoricExternalTaskLogQuery orderByProcessDefinitionId()
Order by process definition id (needs to be followed by Query.asc() or Query.desc()).


orderByProcessDefinitionKey

HistoricExternalTaskLogQuery orderByProcessDefinitionKey()
Order by process definition key (needs to be followed by Query.asc() or Query.desc()).


orderByTenantId

HistoricExternalTaskLogQuery orderByTenantId()
Order by tenant id (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of external task log entries without tenant id is database-specific.



Copyright © 2018 camunda services GmbH. All rights reserved.