|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JobDefinitionQuery | |
|---|---|
| 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.impl | API implementation classes, which shouldn't directly be used by end-users. |
| org.camunda.bpm.engine.management | Classes related to the ManagementService. |
| Uses of JobDefinitionQuery in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return JobDefinitionQuery | |
|---|---|
JobDefinitionQuery |
ManagementService.createJobDefinitionQuery()
Returns a new JobDefinitionQuery 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 | |
|---|---|
class |
JobDefinitionQueryImpl
|
| Uses of JobDefinitionQuery in org.camunda.bpm.engine.management |
|---|
| Methods in org.camunda.bpm.engine.management that return JobDefinitionQuery | |
|---|---|
JobDefinitionQuery |
JobDefinitionQuery.active()
Only selects job definitions which are active |
JobDefinitionQuery |
JobDefinitionQuery.activityIdIn(String... activityIds)
Only select job definitions which exist for the listed activity ids |
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 id |
JobDefinitionQuery |
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 by Query.asc() or Query.desc()). |
JobDefinitionQuery |
JobDefinitionQuery.orderByJobConfiguration()
Order by job configuration (needs to be followed by Query.asc() or Query.desc()). |
JobDefinitionQuery |
JobDefinitionQuery.orderByJobDefinitionId()
Order by id (needs to be followed by Query.asc() or Query.desc()). |
JobDefinitionQuery |
JobDefinitionQuery.orderByJobType()
Order by job type (needs to be followed by Query.asc() or Query.desc()). |
JobDefinitionQuery |
JobDefinitionQuery.orderByProcessDefinitionId()
Order by process defintion id (needs to be followed by Query.asc() or Query.desc()). |
JobDefinitionQuery |
JobDefinitionQuery.orderByProcessDefinitionKey()
Order by process definition key (needs to be followed by Query.asc() or Query.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 suspended |
JobDefinitionQuery |
JobDefinitionQuery.withOverridingJobPriority()
Only selects job definitions which have a job priority defined. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||