Package org.flowable.dmn.api
Interface DmnHistoricDecisionExecution
-
public interface DmnHistoricDecisionExecutionAn object structure representing the execution of a decision- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActivityId()reference to the activity for which the decision was executedStringgetDecisionDefinitionId()reference to the decision definition that was executedStringgetDecisionKey()reference to decision keyStringgetDecisionName()reference to decision nameStringgetDecisionVersion()reference to decision versionStringgetDeploymentId()reference to the deployment of the decision definition that was executedDategetEndTime()end time of the decision executionStringgetExecutionId()reference to the execution for which the decision was executedStringgetExecutionJson()detailed information of the decision executionStringgetId()unique identifierStringgetInstanceId()reference to the (process) instance for which the decision was executedStringgetScopeType()reference to the scope type for which the decision was executedDategetStartTime()start time of the decision executionStringgetTenantId()tenant identifier of this decision executionbooleanisFailed()identifier if the decision execution failed
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getDecisionDefinitionId
String getDecisionDefinitionId()
reference to the decision definition that was executed
-
getDeploymentId
String getDeploymentId()
reference to the deployment of the decision definition that was executed
-
getStartTime
Date getStartTime()
start time of the decision execution
-
getEndTime
Date getEndTime()
end time of the decision execution
-
getInstanceId
String getInstanceId()
reference to the (process) instance for which the decision was executed
-
getExecutionId
String getExecutionId()
reference to the execution for which the decision was executed
-
getActivityId
String getActivityId()
reference to the activity for which the decision was executed
-
getScopeType
String getScopeType()
reference to the scope type for which the decision was executed
-
isFailed
boolean isFailed()
identifier if the decision execution failed
-
getTenantId
String getTenantId()
tenant identifier of this decision execution
-
getExecutionJson
String getExecutionJson()
detailed information of the decision execution
-
getDecisionKey
String getDecisionKey()
reference to decision key
-
getDecisionName
String getDecisionName()
reference to decision name
-
getDecisionVersion
String getDecisionVersion()
reference to decision version
-
-