| 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 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. | 
| org.camunda.bpm.engine.rest.dto.repository | 
| Modifier and Type | Method and Description | 
|---|---|
DecisionDefinitionQuery | 
RepositoryService.createDecisionDefinitionQuery()
Query decision definitions. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
DecisionDefinitionQuery | 
RepositoryServiceImpl.createDecisionDefinitionQuery()  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
DecisionDefinitionQueryImpl  | 
| Modifier and Type | Method and Description | 
|---|---|
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.decisionRequirementsDefinitionId(String decisionRequirementsDefinitionId)
Only select decision definitions which belongs to a decision requirements definition with the given id. 
 | 
DecisionDefinitionQuery | 
DecisionDefinitionQuery.decisionRequirementsDefinitionKey(String decisionRequirementsDefinitionKey)
Only select decision definitions which belongs to a decision requirements definition with the given key. 
 | 
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.orderByDecisionRequirementsDefinitionKey()
Order by key of the decision requirements definition
 (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.orderByVersionTag()
Order by version tag (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.versionTag(String versionTag)
Only selects decision definitions with a specific version tag 
 | 
DecisionDefinitionQuery | 
DecisionDefinitionQuery.versionTagLike(String versionTagLike)
Only selects decision definitions with a version tag like the given 
 | 
DecisionDefinitionQuery | 
DecisionDefinitionQuery.withoutDecisionRequirementsDefinition()
Only select decision definitions which belongs to no decision requirements definition. 
 | 
DecisionDefinitionQuery | 
DecisionDefinitionQuery.withoutTenantId()
Only select decision definitions which have no tenant id. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected DecisionDefinitionQuery | 
DecisionDefinitionQueryDto.createNewQuery(ProcessEngine engine)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
DecisionDefinitionQueryDto.applyFilters(DecisionDefinitionQuery query)  | 
protected void | 
DecisionDefinitionQueryDto.applySortBy(DecisionDefinitionQuery query,
           String sortBy,
           Map<String,Object> parameters,
           ProcessEngine engine)  | 
Copyright © 2019. All rights reserved.