|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DecisionDefinition | |
|---|---|
| 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.cfg.auth | |
| org.camunda.bpm.engine.impl.dmn.cmd | |
| org.camunda.bpm.engine.impl.dmn.entity.repository | |
| org.camunda.bpm.engine.impl.dmn.invocation | |
| org.camunda.bpm.engine.impl.persistence.deploy | |
| org.camunda.bpm.engine.impl.util | |
| Uses of DecisionDefinition in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return DecisionDefinition | |
|---|---|
DecisionDefinition |
RepositoryService.getDecisionDefinition(String decisionDefinitionId)
Returns the DecisionDefinition. |
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl |
|---|
| Methods in org.camunda.bpm.engine.impl that return DecisionDefinition | |
|---|---|
DecisionDefinition |
RepositoryServiceImpl.getDecisionDefinition(String decisionDefinitionId)
|
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.cfg.auth |
|---|
| Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type DecisionDefinition | |
|---|---|
AuthorizationEntity[] |
DefaultAuthorizationProvider.newDecisionDefinition(DecisionDefinition decisionDefinition)
|
AuthorizationEntity[] |
ResourceAuthorizationProvider.newDecisionDefinition(DecisionDefinition decisionDefinition)
Invoked whenever a new decision definition is created. |
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.dmn.cmd |
|---|
| Methods in org.camunda.bpm.engine.impl.dmn.cmd that return DecisionDefinition | |
|---|---|
DecisionDefinition |
GetDeploymentDecisionDefinitionCmd.execute(CommandContext commandContext)
|
protected DecisionDefinition |
EvaluateDecisionByKeyCmd.getDecisionDefinition(CommandContext commandContext)
|
| Methods in org.camunda.bpm.engine.impl.dmn.cmd with parameters of type DecisionDefinition | |
|---|---|
protected org.camunda.bpm.dmn.engine.DmnDecisionTableResult |
EvaluateDecisionByIdCmd.doEvaluateDecision(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables)
|
protected org.camunda.bpm.dmn.engine.DmnDecisionTableResult |
EvaluateDecisionByKeyCmd.doEvaluateDecision(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables)
|
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.dmn.entity.repository |
|---|
| Classes in org.camunda.bpm.engine.impl.dmn.entity.repository that implement DecisionDefinition | |
|---|---|
class |
DecisionDefinitionEntity
|
| Methods in org.camunda.bpm.engine.impl.dmn.entity.repository that return types with arguments of type DecisionDefinition | |
|---|---|
List<DecisionDefinition> |
DecisionDefinitionQueryImpl.executeList(CommandContext commandContext,
Page page)
|
List<DecisionDefinition> |
DecisionDefinitionManager.findDecisionDefinitionByDeploymentId(String deploymentId)
|
List<DecisionDefinition> |
DecisionDefinitionManager.findDecisionDefinitionsByQueryCriteria(DecisionDefinitionQueryImpl decisionDefinitionQuery,
Page page)
|
| Methods in org.camunda.bpm.engine.impl.dmn.entity.repository with parameters of type DecisionDefinition | |
|---|---|
protected void |
DecisionDefinitionManager.createDefaultAuthorizations(DecisionDefinition decisionDefinition)
|
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.dmn.invocation |
|---|
| Fields in org.camunda.bpm.engine.impl.dmn.invocation declared as DecisionDefinition | |
|---|---|
protected DecisionDefinition |
DecisionTableInvocation.decisionDefinition
|
| Methods in org.camunda.bpm.engine.impl.dmn.invocation that return DecisionDefinition | |
|---|---|
DecisionDefinition |
DecisionTableInvocation.getDecisionDefinition()
|
| Constructors in org.camunda.bpm.engine.impl.dmn.invocation with parameters of type DecisionDefinition | |
|---|---|
DecisionTableInvocation(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.context.VariableContext variableContext)
|
|
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.persistence.deploy |
|---|
| Methods in org.camunda.bpm.engine.impl.persistence.deploy that return DecisionDefinition | |
|---|---|
DecisionDefinition |
DeploymentCache.findDeployedDecisionDefinitionByDeploymentAndKey(String deploymentId,
String decisionDefinitionKey)
|
DecisionDefinition |
DeploymentCache.findDeployedDecisionDefinitionByKeyAndVersion(String decisionDefinitionKey,
Integer decisionDefinitionVersion)
|
DecisionDefinition |
DeploymentCache.findDeployedLatestDecisionDefinitionByKey(String decisionDefinitionKey)
|
| Uses of DecisionDefinition in org.camunda.bpm.engine.impl.util |
|---|
| Methods in org.camunda.bpm.engine.impl.util that return DecisionDefinition | |
|---|---|
static DecisionDefinition |
CallableElementUtil.getDecisionDefinitionToCall(VariableScope execution,
BaseCallableElement callableElement)
|
protected static DecisionDefinition |
DecisionTableUtil.resolveDecisionDefinition(BaseCallableElement callableElement,
AbstractVariableScope execution)
|
| Methods in org.camunda.bpm.engine.impl.util with parameters of type DecisionDefinition | |
|---|---|
protected static DecisionTableInvocation |
DecisionTableUtil.createInvocation(DecisionDefinition decisionDefinition,
AbstractVariableScope variableScope)
|
protected static DecisionTableInvocation |
DecisionTableUtil.createInvocation(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.context.VariableContext variableContext)
|
protected static DecisionTableInvocation |
DecisionTableUtil.createInvocation(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables)
|
static org.camunda.bpm.dmn.engine.DmnDecisionTableResult |
DecisionTableUtil.evaluateDecisionTable(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||