Uses of Interface
org.camunda.bpm.engine.history.HistoricJobLogQuery
-
Packages that use HistoricJobLogQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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 theHistoryService
.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 -
-
Uses of HistoricJobLogQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return HistoricJobLogQuery Modifier and Type Method Description HistoricJobLogQuery
HistoryService. createHistoricJobLogQuery()
Creates a new programmatic query to search forhistoric job logs
. -
Uses of HistoricJobLogQuery in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history that return HistoricJobLogQuery Modifier and Type Method 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. failedActivityIdIn(String... activityIds)
Only select historic job log entries which are associated with failures of one of the given activity ids.HistoricJobLogQuery
HistoricJobLogQuery. failureLog()
Only select failed historic job log entries.HistoricJobLogQuery
HistoricJobLogQuery. hostname(String hostname)
Only selects historic job log entries that belong to the given host name.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 byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByExecutionId()
Order by execution id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByHostname()
Order by hostname (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByJobDefinitionId()
Order by job definition id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByJobDueDate()
Order by job due date (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByJobId()
Order by job id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByJobPriority()
Order by job priority (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByJobRetries()
Order by job retries (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByProcessDefinitionId()
Order by process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByProcessInstanceId()
Order by process instance id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderByTimestamp()
Order by timestamp (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricJobLogQuery
HistoricJobLogQuery. orderPartiallyByOccurrence()
Sort thehistoric job logs
in the order in which they occurred and needs to be followed byQuery.asc()
orQuery.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 asuccessful
executed job.HistoricJobLogQuery
HistoricJobLogQuery. tenantIdIn(String... tenantIds)
Only select historic job log entries that belong to one of the given tenant ids.HistoricJobLogQuery
HistoricJobLogQuery. withoutTenantId()
Only selects historic job log entries that have no tenant id. -
Uses of HistoricJobLogQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement HistoricJobLogQuery Modifier and Type Class Description class
HistoricJobLogQueryImpl
-
Uses of HistoricJobLogQuery in org.camunda.bpm.engine.rest.dto.history
Methods in org.camunda.bpm.engine.rest.dto.history that return HistoricJobLogQuery Modifier and Type Method Description protected HistoricJobLogQuery
HistoricJobLogQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.history with parameters of type HistoricJobLogQuery Modifier and Type Method Description protected void
HistoricJobLogQueryDto. applyFilters(HistoricJobLogQuery query)
protected void
HistoricJobLogQueryDto. applySortBy(HistoricJobLogQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-
Uses of HistoricJobLogQuery in org.camunda.bpm.engine.rest.impl.history
Methods in org.camunda.bpm.engine.rest.impl.history with parameters of type HistoricJobLogQuery Modifier and Type Method Description protected List<HistoricJobLog>
HistoricJobLogRestServiceImpl. executePaginatedQuery(HistoricJobLogQuery query, Integer firstResult, Integer maxResults)
-