Package | Description |
---|---|
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 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. |
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 . |
org.camunda.bpm.engine.rest.dto.management |
Modifier and Type | Method and Description |
---|---|
JobDefinitionQuery |
ManagementService.createJobDefinitionQuery()
Returns a new
JobDefinitionQuery implementation, that can be used
to dynamically query the job definitions. |
Modifier and Type | Class and Description |
---|---|
class |
JobDefinitionQueryImpl |
Modifier and Type | Method and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
protected JobDefinitionQuery |
JobDefinitionQueryDto.createNewQuery(ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected void |
JobDefinitionQueryDto.applyFilters(JobDefinitionQuery query) |
protected void |
JobDefinitionQueryDto.applySortingOptions(JobDefinitionQuery query) |
Copyright © 2015. All rights reserved.