Package org.flowable.dmn.api
Interface DmnDecision
-
public interface DmnDecisionAn object structure representing an executable DMN decision- Author:
- Tijs Rademakers, Joram Barez, Yvo Swillens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCategory()category name of this definitionStringgetDecisionType()The decision type of this definitionStringgetDeploymentId()The deployment in which this definition is contained.StringgetDescription()description of this definitionStringgetDiagramResourceName()The resource name in the deployment of the diagram image (if any).StringgetId()unique identifierStringgetKey()unique name for all versions this definitionStringgetName()label used for display purposesStringgetResourceName()name ofthe resourceof this definition.StringgetTenantId()The tenant identifier of this definitionintgetVersion()version of this definitionbooleanhasGraphicalNotation()Does this decision have a graphical notation defined (such that a diagram can be generated)?
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getCategory
String getCategory()
category name of this definition
-
getName
String getName()
label used for display purposes
-
getKey
String getKey()
unique name for all versions this definition
-
getDescription
String getDescription()
description of this definition
-
getVersion
int getVersion()
version of this definition
-
getResourceName
String getResourceName()
name ofthe resourceof this definition.
-
hasGraphicalNotation
boolean hasGraphicalNotation()
Does this decision have a graphical notation defined (such that a diagram can be generated)?
-
getDiagramResourceName
String getDiagramResourceName()
The resource name in the deployment of the diagram image (if any).
-
getDeploymentId
String getDeploymentId()
The deployment in which this definition is contained.
-
getTenantId
String getTenantId()
The tenant identifier of this definition
-
getDecisionType
String getDecisionType()
The decision type of this definition
-
-