Uses of Interface
org.camunda.bpm.engine.management.JobDefinitionQuery
-
Packages that use JobDefinitionQuery 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.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.management Classes related to theManagementService
.org.camunda.bpm.engine.rest.dto.management org.camunda.bpm.qa.upgrade -
-
Uses of JobDefinitionQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return JobDefinitionQuery Modifier and Type Method Description JobDefinitionQuery
ManagementService. createJobDefinitionQuery()
Returns a newJobDefinitionQuery
implementation, that can be used to dynamically query the job definitions. -
Uses of JobDefinitionQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement JobDefinitionQuery Modifier and Type Class Description class
JobDefinitionQueryImpl
-
Uses of JobDefinitionQuery in org.camunda.bpm.engine.management
Methods in org.camunda.bpm.engine.management that return JobDefinitionQuery Modifier and Type Method Description JobDefinitionQuery
JobDefinitionQuery. active()
Only selects job definitions which are activeJobDefinitionQuery
JobDefinitionQuery. activityIdIn(String... activityIds)
Only select job definitions which exist for the listed activity idsJobDefinitionQuery
JobDefinitionQuery. includeJobDefinitionsWithoutTenantId()
Select job definitions which have no tenant id.JobDefinitionQuery
JobDefinitionQuery. jobConfiguration(String jobConfiguration)
Only select job definitions which contain the configuration.JobDefinitionQuery
JobDefinitionQuery. jobDefinitionId(String jobDefinitionId)
Only select job definitions with the given idJobDefinitionQuery
JobDefinitionQuery. jobType(String jobType)
Only select job definitions which have the given job type.JobDefinitionQuery
JobDefinitionQuery. orderByActivityId()
Order by activty id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByJobConfiguration()
Order by job configuration (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByJobDefinitionId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByJobType()
Order by job type (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByProcessDefinitionId()
Order by process defintion id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).JobDefinitionQuery
JobDefinitionQuery. processDefinitionId(String processDefinitionId)
Only select job definitions which exist for the given process definition id.JobDefinitionQuery
JobDefinitionQuery. processDefinitionKey(String processDefinitionKey)
Only select job definitions which exist for the given process definition key.JobDefinitionQuery
JobDefinitionQuery. suspended()
Only selects job definitions which are suspendedJobDefinitionQuery
JobDefinitionQuery. tenantIdIn(String... tenantIds)
Only select job definitions that belong to one of the given tenant ids.JobDefinitionQuery
JobDefinitionQuery. withoutTenantId()
Only select job definitions which have no tenant id.JobDefinitionQuery
JobDefinitionQuery. withOverridingJobPriority()
Only selects job definitions which have a job priority defined. -
Uses of JobDefinitionQuery in org.camunda.bpm.engine.rest.dto.management
Methods in org.camunda.bpm.engine.rest.dto.management that return JobDefinitionQuery Modifier and Type Method Description protected JobDefinitionQuery
JobDefinitionQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.management with parameters of type JobDefinitionQuery Modifier and Type Method Description protected 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
Methods in org.camunda.bpm.qa.upgrade that return JobDefinitionQuery Modifier and Type Method Description JobDefinitionQuery
UpgradeTestRule. jobDefinitionQuery()
-