Class DmnDecisionLiteralExpressionEvaluationEventImpl
- java.lang.Object
-
- org.camunda.bpm.dmn.engine.impl.delegate.DmnDecisionLiteralExpressionEvaluationEventImpl
-
- All Implemented Interfaces:
DmnDecisionLiteralExpressionEvaluationEvent,DmnDecisionLogicEvaluationEvent
public class DmnDecisionLiteralExpressionEvaluationEventImpl extends java.lang.Object implements DmnDecisionLiteralExpressionEvaluationEvent
-
-
Field Summary
Fields Modifier and Type Field Description protected DmnDecisiondecisionprotected longexecutedDecisionElementsprotected java.lang.StringoutputNameprotected TypedValueoutputValue
-
Constructor Summary
Constructors Constructor Description DmnDecisionLiteralExpressionEvaluationEventImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DmnDecisiongetDecision()longgetExecutedDecisionElements()java.lang.StringgetOutputName()TypedValuegetOutputValue()voidsetDecision(DmnDecision decision)voidsetExecutedDecisionElements(long executedDecisionElements)voidsetOutputName(java.lang.String outputName)voidsetOutputValue(TypedValue outputValue)java.lang.StringtoString()
-
-
-
Field Detail
-
decision
protected DmnDecision decision
-
outputName
protected java.lang.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 java.lang.String getOutputName()
- Specified by:
getOutputNamein interfaceDmnDecisionLiteralExpressionEvaluationEvent- Returns:
- the output name of the evaluated expression
-
setOutputName
public void setOutputName(java.lang.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)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-