Uses of Interface
org.camunda.bpm.engine.management.JobDefinitionQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s 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.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
ManagementService
.-
Uses of JobDefinitionQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionManagementService.createJobDefinitionQuery()
Returns a newJobDefinitionQuery
implementation, that can be used to dynamically query the job definitions. -
Uses of JobDefinitionQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionJobDefinitionQueryImpl.active()
JobDefinitionQueryImpl.activityIdIn
(String... activityIds) ManagementServiceImpl.createJobDefinitionQuery()
JobDefinitionQueryImpl.includeJobDefinitionsWithoutTenantId()
JobDefinitionQueryImpl.jobConfiguration
(String jobConfiguration) JobDefinitionQueryImpl.jobDefinitionId
(String jobDefinitionId) JobDefinitionQueryImpl.orderByActivityId()
JobDefinitionQueryImpl.orderByJobConfiguration()
JobDefinitionQueryImpl.orderByJobDefinitionId()
JobDefinitionQueryImpl.orderByJobType()
JobDefinitionQueryImpl.orderByProcessDefinitionId()
JobDefinitionQueryImpl.orderByProcessDefinitionKey()
JobDefinitionQueryImpl.orderByTenantId()
JobDefinitionQueryImpl.processDefinitionId
(String processDefinitionId) JobDefinitionQueryImpl.processDefinitionKey
(String processDefinitionKey) JobDefinitionQueryImpl.suspended()
JobDefinitionQueryImpl.tenantIdIn
(String... tenantIds) JobDefinitionQueryImpl.withoutTenantId()
JobDefinitionQueryImpl.withOverridingJobPriority()
-
Uses of JobDefinitionQuery in org.camunda.bpm.engine.management
Modifier and TypeMethodDescriptionJobDefinitionQuery.active()
Only selects job definitions which are activeJobDefinitionQuery.activityIdIn
(String... activityIds) Only select job definitions which exist for the listed activity idsJobDefinitionQuery.includeJobDefinitionsWithoutTenantId()
Select job definitions which have no tenant id.JobDefinitionQuery.jobConfiguration
(String jobConfiguration) Only select job definitions which contain the configuration.JobDefinitionQuery.jobDefinitionId
(String jobDefinitionId) Only select job definitions with the given idOnly select job definitions which have the given job type.JobDefinitionQuery.orderByActivityId()
Order by activty id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByJobConfiguration()
Order by job configuration (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByJobDefinitionId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByJobType()
Order by job type (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByProcessDefinitionId()
Order by process defintion id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery.processDefinitionId
(String processDefinitionId) Only select job definitions which exist for the given process definition id.JobDefinitionQuery.processDefinitionKey
(String processDefinitionKey) Only select job definitions which exist for the given process definition key.JobDefinitionQuery.suspended()
Only selects job definitions which are suspendedJobDefinitionQuery.tenantIdIn
(String... tenantIds) Only select job definitions that belong to one of the given tenant ids.JobDefinitionQuery.withoutTenantId()
Only select job definitions which have no tenant id.JobDefinitionQuery.withOverridingJobPriority()
Only selects job definitions which have a job priority defined. -
Uses of JobDefinitionQuery in org.camunda.bpm.engine.rest.dto.management
Modifier and TypeMethodDescriptionprotected JobDefinitionQuery
JobDefinitionQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
JobDefinitionQueryDto.applyFilters
(JobDefinitionQuery query) protected void
JobDefinitionQueryDto.applySortBy
(JobDefinitionQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of JobDefinitionQuery in org.camunda.bpm.qa.upgrade