|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DecisionDefinitionQuery | |
|---|---|
| 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.impl.dmn.entity.repository | |
| org.camunda.bpm.engine.repository | Classes related to the RepositoryService. |
| Uses of DecisionDefinitionQuery in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return DecisionDefinitionQuery | |
|---|---|
DecisionDefinitionQuery |
RepositoryService.createDecisionDefinitionQuery()
Query decision definitions. |
| Uses of DecisionDefinitionQuery in org.camunda.bpm.engine.impl |
|---|
| Methods in org.camunda.bpm.engine.impl that return DecisionDefinitionQuery | |
|---|---|
DecisionDefinitionQuery |
RepositoryServiceImpl.createDecisionDefinitionQuery()
|
| Uses of DecisionDefinitionQuery in org.camunda.bpm.engine.impl.dmn.entity.repository |
|---|
| Classes in org.camunda.bpm.engine.impl.dmn.entity.repository that implement DecisionDefinitionQuery | |
|---|---|
class |
DecisionDefinitionQueryImpl
|
| Uses of DecisionDefinitionQuery in org.camunda.bpm.engine.repository |
|---|
| Methods in org.camunda.bpm.engine.repository that return DecisionDefinitionQuery | |
|---|---|
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionCategory(String decisionDefinitionCategory)
Only select decision definitions with the given category. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionCategoryLike(String decisionDefinitionCategoryLike)
Only select decision definitions where the category matches the given parameter. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionId(String decisionDefinitionId)
Only select decision definition with the given id. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionIdIn(String... ids)
Only select decision definitions with the given ids. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionKey(String decisionDefinitionKey)
Only select decision definition with the given key. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionKeyLike(String decisionDefinitionKeyLike)
Only select decision definitions where the key matches the given parameter. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionName(String decisionDefinitionName)
Only select decision definitions with the given name. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionNameLike(String decisionDefinitionNameLike)
Only select decision definitions where the name matches the given parameter. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionResourceName(String resourceName)
Only select decision definition with the given resource name. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionResourceNameLike(String resourceNameLike)
Only select decision definition with a resource name like the given. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.decisionDefinitionVersion(Integer decisionDefinitionVersion)
Only select decision definition with a certain version. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.deploymentId(String deploymentId)
Only select decision definitions that are deployed in a deployment with the given deployment id. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.includeDecisionDefinitionsWithoutTenantId()
Select decision definitions which have no tenant id. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.latestVersion()
Only select the decision definitions which are the latest deployed (ie. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDecisionDefinitionCategory()
Order by the category of the decision definitions (needs to be followed by Query.asc() or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDecisionDefinitionId()
Order by the id of the decision definitions (needs to be followed by Query.asc() or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDecisionDefinitionKey()
Order by decision definition key (needs to be followed by Query.asc() or
Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDecisionDefinitionName()
Order by the name of the decision definitions (needs to be followed by Query.asc() or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDecisionDefinitionVersion()
Order by the version of the decision definitions (needs to be followed by Query.asc() or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByDeploymentId()
Order by deployment id (needs to be followed by Query.asc()
or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.orderByTenantId()
Order by tenant id (needs to be followed by Query.asc() or Query.desc()). |
DecisionDefinitionQuery |
DecisionDefinitionQuery.tenantIdIn(String... tenantIds)
Only select decision definitions with one of the given tenant ids. |
DecisionDefinitionQuery |
DecisionDefinitionQuery.withoutTenantId()
Only select decision definitions which have no tenant id. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||