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

Packages that use HistoricJobLogQuery
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 HistoricJobLogQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return HistoricJobLogQuery
 HistoricJobLogQuery HistoryService.createHistoricJobLogQuery()
          Creates a new programmatic query to search for historic job logs.
 

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

Methods in org.camunda.bpm.engine.history that return HistoricJobLogQuery
 HistoricJobLogQuery HistoricJobLogQuery.activityIdIn(String... activityIds)
          Only select historic job log entries which are associated with one of the given activity ids.
 HistoricJobLogQuery HistoricJobLogQuery.creationLog()
          Only select created historic job log entries.
 HistoricJobLogQuery HistoricJobLogQuery.deletionLog()
          Only select deleted historic job log entries.
 HistoricJobLogQuery HistoricJobLogQuery.deploymentId(String deploymentId)
          Only select historic job log entries with the deployment id.
 HistoricJobLogQuery HistoricJobLogQuery.executionIdIn(String... executionIds)
          Only select historic job log entries which are associated with one of the given execution ids.
 HistoricJobLogQuery HistoricJobLogQuery.failureLog()
          Only select failed historic job log entries.
 HistoricJobLogQuery HistoricJobLogQuery.jobDefinitionConfiguration(String jobDefinitionConfiguration)
          Only select historic job log entries with the given job definition configuration type.
 HistoricJobLogQuery HistoricJobLogQuery.jobDefinitionId(String jobDefinitionId)
          Only select historic job log entries with the given job definition id.
 HistoricJobLogQuery HistoricJobLogQuery.jobDefinitionType(String jobDefinitionType)
          Only select historic job log entries with the given job definition type.
 HistoricJobLogQuery HistoricJobLogQuery.jobExceptionMessage(String exceptionMessage)
          Only select historic job log entries with the given exception message.
 HistoricJobLogQuery HistoricJobLogQuery.jobId(String jobId)
          Only select historic job log entries with the given job id.
 HistoricJobLogQuery HistoricJobLogQuery.jobPriorityHigherThanOrEquals(long priority)
          Only select log entries where the job had a priority higher than or equal to the given priority.
 HistoricJobLogQuery HistoricJobLogQuery.jobPriorityLowerThanOrEquals(long priority)
          Only select log entries where the job had a priority lower than or equal to the given priority.
 HistoricJobLogQuery HistoricJobLogQuery.logId(String logId)
          Only select historic job log entries with the id.
 HistoricJobLogQuery HistoricJobLogQuery.orderByActivityId()
          Order by activity id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByDeploymentId()
          Order by deployment id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByExecutionId()
          Order by execution id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByJobDefinitionId()
          Order by job definition id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByJobDueDate()
          Order by job due date (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByJobId()
          Order by job id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByJobPriority()
          Order by job priority (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByJobRetries()
          Order by job retries (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByProcessDefinitionId()
          Order by process definition id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByProcessDefinitionKey()
          Order by process definition key (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByProcessInstanceId()
          Order by process instance id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderByTimestamp()
          Order by timestamp (needs to be followed by Query.asc() or Query.desc()).
 HistoricJobLogQuery HistoricJobLogQuery.orderPartiallyByOccurrence()
          Sort the historic job logs in the order in which they occurred and needs to be followed by Query.asc() or Query.desc().
 HistoricJobLogQuery HistoricJobLogQuery.processDefinitionId(String processDefinitionId)
          Only select historic job log entries with the process definition id.
 HistoricJobLogQuery HistoricJobLogQuery.processDefinitionKey(String processDefinitionKey)
          Only select historic job log entries with the process instance key.
 HistoricJobLogQuery HistoricJobLogQuery.processInstanceId(String processInstanceId)
          Only select historic job log entries with the process instance id.
 HistoricJobLogQuery HistoricJobLogQuery.successLog()
          Only select historic job logs which belongs to a successful executed job.
 HistoricJobLogQuery HistoricJobLogQuery.tenantIdIn(String... tenantIds)
          Only select historic job log entries that belong to one of the given tenant ids.
 

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

Classes in org.camunda.bpm.engine.impl that implement HistoricJobLogQuery
 class HistoricJobLogQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return HistoricJobLogQuery
 HistoricJobLogQuery HistoricJobLogQueryImpl.activityIdIn(String... activityIds)
           
 HistoricJobLogQuery HistoryServiceImpl.createHistoricJobLogQuery()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.creationLog()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.deletionLog()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.deploymentId(String deploymentId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.executionIdIn(String... executionIds)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.failureLog()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobDefinitionConfiguration(String jobDefinitionConfiguration)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobDefinitionId(String jobDefinitionId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobDefinitionType(String jobDefinitionType)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobExceptionMessage(String jobExceptionMessage)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobId(String jobId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobPriorityHigherThanOrEquals(long priority)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.jobPriorityLowerThanOrEquals(long priority)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.logId(String historicJobLogId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByActivityId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByDeploymentId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByExecutionId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByJobDefinitionId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByJobDueDate()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByJobId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByJobPriority()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByJobRetries()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByProcessDefinitionId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByProcessDefinitionKey()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByProcessInstanceId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByTenantId()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderByTimestamp()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.orderPartiallyByOccurrence()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.processDefinitionId(String processDefinitionId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.processDefinitionKey(String processDefinitionKey)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.processInstanceId(String processInstanceId)
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.successLog()
           
 HistoricJobLogQuery HistoricJobLogQueryImpl.tenantIdIn(String... tenantIds)
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.