Uses of Interface
org.camunda.bpm.engine.history.HistoricExternalTaskLogQuery

Packages that use HistoricExternalTaskLogQuery
org.camunda.bpm.engine Public API of the camunda BPM engine.

Typical usage of the API starts by the creation of a ProcessEngineConfiguration (typically based on a configuration file), from which a ProcessEngine can be obtained.

Through the services obtained from such a ProcessEngine, BPM and workflow operation can be executed:

RepositoryService: Manages Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.
 
org.camunda.bpm.engine.history Classes related to the HistoryService
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
 

Uses of HistoricExternalTaskLogQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return HistoricExternalTaskLogQuery
 HistoricExternalTaskLogQuery HistoryService.createHistoricExternalTaskLogQuery()
          Creates a new programmatic query to search for historic external task logs.
 

Uses of HistoricExternalTaskLogQuery in org.camunda.bpm.engine.history
 

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

Uses of HistoricExternalTaskLogQuery in org.camunda.bpm.engine.impl
 

Classes in org.camunda.bpm.engine.impl that implement HistoricExternalTaskLogQuery
 class HistoricExternalTaskLogQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return HistoricExternalTaskLogQuery
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.activityIdIn(String... activityIds)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.activityInstanceIdIn(String... activityInstanceIds)
           
 HistoricExternalTaskLogQuery HistoryServiceImpl.createHistoricExternalTaskLogQuery()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.creationLog()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.deletionLog()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.errorMessage(String errorMessage)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.executionIdIn(String... executionIds)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.externalTaskId(String externalTaskId)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.failureLog()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.logId(String historicExternalTaskLogId)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByActivityId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByActivityInstanceId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByExecutionId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByExternalTaskId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByPriority()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByProcessDefinitionId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByProcessDefinitionKey()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByProcessInstanceId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByRetries()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByTenantId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByTimestamp()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByTopicName()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.orderByWorkerId()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.priorityHigherThanOrEquals(long priority)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.priorityLowerThanOrEquals(long priority)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.processDefinitionId(String processDefinitionId)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.processDefinitionKey(String processDefinitionKey)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.processInstanceId(String processInstanceId)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.successLog()
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.tenantIdIn(String... tenantIds)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.topicName(String topicName)
           
 HistoricExternalTaskLogQuery HistoricExternalTaskLogQueryImpl.workerId(String workerId)
           
 



Copyright © 2017 camunda services GmbH. All rights reserved.