Uses of Interface
org.camunda.bpm.engine.management.JobDefinitionQuery

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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups 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 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
           
 

Methods in org.camunda.bpm.engine.impl that return JobDefinitionQuery
 JobDefinitionQuery JobDefinitionQueryImpl.active()
           
 JobDefinitionQuery JobDefinitionQueryImpl.activityIdIn(String... activityIds)
           
 JobDefinitionQuery ManagementServiceImpl.createJobDefinitionQuery()
           
 JobDefinitionQuery JobDefinitionQueryImpl.jobConfiguration(String jobConfiguration)
           
 JobDefinitionQuery JobDefinitionQueryImpl.jobDefinitionId(String jobDefinitionId)
           
 JobDefinitionQuery JobDefinitionQueryImpl.jobType(String jobType)
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByActivityId()
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByJobConfiguration()
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByJobDefinitionId()
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByJobType()
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByProcessDefinitionId()
           
 JobDefinitionQuery JobDefinitionQueryImpl.orderByProcessDefinitionKey()
           
 JobDefinitionQuery JobDefinitionQueryImpl.processDefinitionId(String processDefinitionId)
           
 JobDefinitionQuery JobDefinitionQueryImpl.processDefinitionKey(String processDefinitionKey)
           
 JobDefinitionQuery JobDefinitionQueryImpl.suspended()
           
 JobDefinitionQuery JobDefinitionQueryImpl.withOverridingJobPriority()
           
 

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.
 



Copyright © 2015 camunda services GmbH. All rights reserved.