public interface DmnRuleService
| Modifier and Type | Method and Description |
|---|---|
ExecuteDecisionBuilder |
createExecuteDecisionBuilder()
Create a builder to execute a decision.
|
List<Map<String,Object>> |
executeDecisionByKey(String decisionKey,
Map<String,Object> inputVariables)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
List<Map<String,Object>> |
executeDecisionByKeyAndParentDeploymentId(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
Map<String,Object> |
executeDecisionByKeyAndParentDeploymentIdSingleResult(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
DecisionExecutionAuditContainer |
executeDecisionByKeyAndParentDeploymentIdWithAuditTrail(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
List<Map<String,Object>> |
executeDecisionByKeyAndTenantId(String decisionKey,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
Map<String,Object> |
executeDecisionByKeyAndTenantIdSingleResult(String decisionKey,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
DecisionExecutionAuditContainer |
executeDecisionByKeyAndTenantIdWithAuditTrail(String decisionKey,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
List<Map<String,Object>> |
executeDecisionByKeyParentDeploymentIdAndTenantId(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
Map<String,Object> |
executeDecisionByKeyParentDeploymentIdAndTenantIdSingleResult(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
DecisionExecutionAuditContainer |
executeDecisionByKeyParentDeploymentIdAndTenantIdWithAuditTrail(String decisionKey,
String parentDeploymentId,
Map<String,Object> inputVariables,
String tenantId)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
Map<String,Object> |
executeDecisionByKeySingleResult(String decisionKey,
Map<String,Object> inputVariables)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
DecisionExecutionAuditContainer |
executeDecisionByKeyWithAuditTrail(String decisionKey,
Map<String,Object> inputVariables)
Deprecated.
Use the createExecuteDecisionBuilder method instead
|
ExecuteDecisionBuilder createExecuteDecisionBuilder()
ExecuteDecisionBuilder build@Deprecated List<Map<String,Object>> executeDecisionByKey(String decisionKey, Map<String,Object> inputVariables)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated Map<String,Object> executeDecisionByKeySingleResult(String decisionKey, Map<String,Object> inputVariables)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when execution has multiple rule results or when an error occurs while executing the decision.@Deprecated DecisionExecutionAuditContainer executeDecisionByKeyWithAuditTrail(String decisionKey, Map<String,Object> inputVariables)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesDecisionExecutionAuditContainer for this executionFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated List<Map<String,Object>> executeDecisionByKeyAndTenantId(String decisionKey, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated Map<String,Object> executeDecisionByKeyAndTenantIdSingleResult(String decisionKey, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when execution has multiple rule results or when an error occurs while executing the decision.@Deprecated DecisionExecutionAuditContainer executeDecisionByKeyAndTenantIdWithAuditTrail(String decisionKey, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesDecisionExecutionAuditContainer for this executionFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated List<Map<String,Object>> executeDecisionByKeyAndParentDeploymentId(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated Map<String,Object> executeDecisionByKeyAndParentDeploymentIdSingleResult(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when execution has multiple rule results or when an error occurs while executing the decision.@Deprecated DecisionExecutionAuditContainer executeDecisionByKeyAndParentDeploymentIdWithAuditTrail(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesDecisionExecutionAuditContainer for this executionFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated List<Map<String,Object>> executeDecisionByKeyParentDeploymentIdAndTenantId(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.@Deprecated Map<String,Object> executeDecisionByKeyParentDeploymentIdAndTenantIdSingleResult(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when execution has multiple rule results or when an error occurs while executing the decision.@Deprecated DecisionExecutionAuditContainer executeDecisionByKeyParentDeploymentIdAndTenantIdWithAuditTrail(String decisionKey, String parentDeploymentId, Map<String,Object> inputVariables, String tenantId)
decisionKey - the decision key, cannot be nullinputVariables - map with input variablesDecisionExecutionAuditContainer for this executionFlowableObjectNotFoundException - when the decision with given key does not exist.FlowableException - when an error occurs while executing the decision.Copyright © 2019 Flowable. All rights reserved.