| Package | Description | 
|---|---|
| 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 DeploymentsRuntimeService:
    For starting and searching ProcessInstancesTaskService:
    Exposes operations to manage human (standalone) Tasks,
    such as claiming, completing and assigning tasksIdentityService:
    Used for managing Users,
    Groups and the relations between themManagementService:
    Exposes engine admin and maintenance operations,
    which have no relation to the runtime execution of business processesHistoryService:
    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. 
 | 
| org.camunda.bpm.engine.rest.dto.history | |
| org.camunda.bpm.engine.rest.impl.history | 
| Modifier and Type | Method and Description | 
|---|---|
HistoricJobLogQuery | 
HistoryService.createHistoricJobLogQuery()
Creates a new programmatic query to search for  
historic job logs. | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
HistoricJobLogQueryImpl  | 
| Modifier and Type | Method and Description | 
|---|---|
protected HistoricJobLogQuery | 
HistoricJobLogQueryDto.createNewQuery(ProcessEngine engine)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
HistoricJobLogQueryDto.applyFilters(HistoricJobLogQuery query)  | 
protected void | 
HistoricJobLogQueryDto.applySortBy(HistoricJobLogQuery query,
           String sortBy,
           Map<String,Object> parameters,
           ProcessEngine engine)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected List<HistoricJobLog> | 
HistoricJobLogRestServiceImpl.executePaginatedQuery(HistoricJobLogQuery query,
                     Integer firstResult,
                     Integer maxResults)  | 
Copyright © 2019. All rights reserved.