Package org.camunda.bpm.engine.history
Interface HistoricDecisionOutputInstance
- All Known Implementing Classes:
HistoricDecisionOutputInstanceEntity
public interface HistoricDecisionOutputInstance
Represents one output variable of a decision evaluation.
- Author:
- Philipp Ossler
-
Method Summary
Modifier and TypeMethodDescriptionThe unique identifier of the clause that the value is assigned for.The name of the clause that the value is assigned for.Returns time when the variable was created.The unique identifier of the historic decision instance.If the variable value could not be loaded, this returns the error message.getId()
The unique identifier of this historic decision output instance.The time the historic decision instance will be removed.Returns the root process instance id of the process instance on which the associated business rule task has been called.The unique identifier of the rule that is matched.The order of the rule that is matched.Returns theTypedValue
for this value.Returns the type name of the variablegetValue()
Returns the value of this variable instance.The name of the output variable.
-
Method Details
-
getId
String getId()The unique identifier of this historic decision output instance. -
getDecisionInstanceId
String getDecisionInstanceId()The unique identifier of the historic decision instance. -
getClauseId
String getClauseId()The unique identifier of the clause that the value is assigned for. Can benull
if the decision is not implemented as decision table. -
getClauseName
String getClauseName()The name of the clause that the value is assigned for. Can benull
if the decision is not implemented as decision table. -
getRuleId
String getRuleId()The unique identifier of the rule that is matched. Can benull
if the decision is not implemented as decision table. -
getRuleOrder
Integer getRuleOrder()The order of the rule that is matched. Can benull
if the decision is not implemented as decision table. -
getVariableName
String getVariableName()The name of the output variable. -
getTypeName
String getTypeName()Returns the type name of the variable -
getValue
Object getValue()Returns the value of this variable instance. -
getTypedValue
TypedValue getTypedValue()Returns theTypedValue
for this value. -
getErrorMessage
String getErrorMessage()If the variable value could not be loaded, this returns the error message.- Returns:
- an error message indicating why the variable value could not be loaded.
-
getCreateTime
Date getCreateTime()Returns time when the variable was created. -
getRootProcessInstanceId
String getRootProcessInstanceId()Returns the root process instance id of the process instance on which the associated business rule task has been called. -
getRemovalTime
Date getRemovalTime()The time the historic decision instance will be removed.
-