Package | Description |
---|---|
org.camunda.bpm.dmn.engine | |
org.camunda.bpm.dmn.engine.impl | |
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.dmn | |
org.camunda.bpm.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
org.camunda.bpm.engine.impl.dmn | |
org.camunda.bpm.engine.impl.dmn.cmd | |
org.camunda.bpm.engine.impl.util |
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(DmnDecision decision,
Map<String,Object> variables)
Evaluates a decision which is implemented as decision table.
|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(DmnDecision decision,
org.camunda.bpm.engine.variable.context.VariableContext variableContext)
Evaluates a decision which is implemented as decision table.
|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(String decisionKey,
DmnModelInstance dmnModelInstance,
Map<String,Object> variables)
Evaluates the decision with the given key in a DMN decision model.
|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(String decisionKey,
DmnModelInstance dmnModelInstance,
org.camunda.bpm.engine.variable.context.VariableContext variableContext)
Evaluates the decision with the given key in a DMN decision model.
|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(String decisionKey,
InputStream inputStream,
Map<String,Object> variables)
Evaluates the decision with the given key in a DMN decision model.
|
DmnDecisionTableResult |
DmnEngine.evaluateDecisionTable(String decisionKey,
InputStream inputStream,
org.camunda.bpm.engine.variable.context.VariableContext variableContext)
Evaluates the decision with the given key in a DMN decision model.
|
Modifier and Type | Class and Description |
---|---|
class |
DmnDecisionTableResultImpl |
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(DmnDecision decision,
Map<String,Object> variables) |
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(DmnDecision decision,
org.camunda.bpm.engine.variable.context.VariableContext variableContext) |
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(String decisionKey,
DmnModelInstance dmnModelInstance,
Map<String,Object> variables) |
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(String decisionKey,
DmnModelInstance dmnModelInstance,
org.camunda.bpm.engine.variable.context.VariableContext variableContext) |
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(String decisionKey,
InputStream inputStream,
Map<String,Object> variables) |
DmnDecisionTableResult |
DefaultDmnEngine.evaluateDecisionTable(String decisionKey,
InputStream inputStream,
org.camunda.bpm.engine.variable.context.VariableContext variableContext) |
Modifier and Type | Method and Description |
---|---|
DmnDecisionResultException |
DmnEngineLogger.decisionResultHasMoreThanOneOutput(DmnDecisionTableResult decisionResult) |
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DecisionService.evaluateDecisionTableById(String decisionDefinitionId,
Map<String,Object> variables)
Evaluates the decision with the given id.
|
DmnDecisionTableResult |
DecisionService.evaluateDecisionTableByKey(String decisionDefinitionKey,
Map<String,Object> variables)
Evaluates the decision with the given key in the latest version.
|
DmnDecisionTableResult |
DecisionService.evaluateDecisionTableByKeyAndVersion(String decisionDefinitionKey,
Integer version,
Map<String,Object> variables)
Evaluates the decision with the given key in the specified version.
|
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DecisionEvaluationBuilder.evaluate()
Evaluates the decision.
|
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DecisionServiceImpl.evaluateDecisionTableById(String decisionDefinitionId,
Map<String,Object> variables) |
DmnDecisionTableResult |
DecisionServiceImpl.evaluateDecisionTableByKey(String decisionDefinitionKey,
Map<String,Object> variables) |
DmnDecisionTableResult |
DecisionServiceImpl.evaluateDecisionTableByKeyAndVersion(String decisionDefinitionKey,
Integer version,
Map<String,Object> variables) |
Modifier and Type | Method and Description |
---|---|
DmnDecisionTableResult |
DecisionTableEvaluationBuilderImpl.evaluate() |
Modifier and Type | Method and Description |
---|---|
protected DmnDecisionTableResult |
EvaluateDecisionTableCmd.doEvaluateDecision(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables) |
DmnDecisionTableResult |
EvaluateDecisionTableCmd.execute(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
static DmnDecisionTableResult |
DecisionEvaluationUtil.evaluateDecisionTable(DecisionDefinition decisionDefinition,
org.camunda.bpm.engine.variable.VariableMap variables) |
Copyright © 2022. All rights reserved.