Class DmnDecisionLiteralExpressionEvaluationEventImpl
- java.lang.Object
-
- org.camunda.bpm.dmn.engine.impl.delegate.DmnDecisionLiteralExpressionEvaluationEventImpl
-
- All Implemented Interfaces:
DmnDecisionLiteralExpressionEvaluationEvent,DmnDecisionLogicEvaluationEvent
public class DmnDecisionLiteralExpressionEvaluationEventImpl extends Object implements DmnDecisionLiteralExpressionEvaluationEvent
-
-
Field Summary
Fields Modifier and Type Field Description protected DmnDecisiondecisionprotected longexecutedDecisionElementsprotected StringoutputNameprotected TypedValueoutputValue
-
Constructor Summary
Constructors Constructor Description DmnDecisionLiteralExpressionEvaluationEventImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DmnDecisiongetDecision()longgetExecutedDecisionElements()StringgetOutputName()TypedValuegetOutputValue()voidsetDecision(DmnDecision decision)voidsetExecutedDecisionElements(long executedDecisionElements)voidsetOutputName(String outputName)voidsetOutputValue(TypedValue outputValue)StringtoString()
-
-
-
Field Detail
-
decision
protected DmnDecision decision
-
outputName
protected String outputName
-
outputValue
protected TypedValue outputValue
-
executedDecisionElements
protected long executedDecisionElements
-
-
Method Detail
-
getDecision
public DmnDecision getDecision()
- Specified by:
getDecisionin interfaceDmnDecisionLogicEvaluationEvent- Returns:
- the evaluated decision
-
setDecision
public void setDecision(DmnDecision decision)
-
getOutputName
public String getOutputName()
- Specified by:
getOutputNamein interfaceDmnDecisionLiteralExpressionEvaluationEvent- Returns:
- the output name of the evaluated expression
-
setOutputName
public void setOutputName(String outputName)
-
getOutputValue
public TypedValue getOutputValue()
- Specified by:
getOutputValuein interfaceDmnDecisionLiteralExpressionEvaluationEvent- Returns:
- the value of the evaluated expression
-
setOutputValue
public void setOutputValue(TypedValue outputValue)
-
getExecutedDecisionElements
public long getExecutedDecisionElements()
- Specified by:
getExecutedDecisionElementsin interfaceDmnDecisionLogicEvaluationEvent- Returns:
- the number of executed decision elements during the evaluation
-
setExecutedDecisionElements
public void setExecutedDecisionElements(long executedDecisionElements)
-
-