Class DecisionCacheEntry
- java.lang.Object
-
- org.flowable.dmn.engine.impl.persistence.deploy.DecisionCacheEntry
-
- All Implemented Interfaces:
Serializable
public class DecisionCacheEntry extends Object implements Serializable
- Author:
- Tijs Rademakers, Yvo Swillens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Decisiondecisionprotected DecisionEntitydecisionEntityprotected DecisionServicedecisionServiceprotected DmnDefinitiondmnDefinition
-
Constructor Summary
Constructors Constructor Description DecisionCacheEntry(DecisionEntity decisionEntity, DmnDefinition dmnDefinition, Decision decision)DecisionCacheEntry(DecisionEntity decisionEntity, DmnDefinition dmnDefinition, DecisionService decisionService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DecisiongetDecision()DecisionEntitygetDecisionEntity()DecisionServicegetDecisionService()DmnDefinitiongetDmnDefinition()voidsetDecision(Decision decision)voidsetDecisionEntity(DecisionEntity decisionEntity)voidsetDecisionService(DecisionService decisionService)voidsetDmnDefinition(DmnDefinition dmnDefinition)
-
-
-
Field Detail
-
decisionEntity
protected DecisionEntity decisionEntity
-
dmnDefinition
protected DmnDefinition dmnDefinition
-
decisionService
protected DecisionService decisionService
-
decision
protected Decision decision
-
-
Constructor Detail
-
DecisionCacheEntry
public DecisionCacheEntry(DecisionEntity decisionEntity, DmnDefinition dmnDefinition, DecisionService decisionService)
-
DecisionCacheEntry
public DecisionCacheEntry(DecisionEntity decisionEntity, DmnDefinition dmnDefinition, Decision decision)
-
-
Method Detail
-
getDecisionEntity
public DecisionEntity getDecisionEntity()
-
setDecisionEntity
public void setDecisionEntity(DecisionEntity decisionEntity)
-
getDmnDefinition
public DmnDefinition getDmnDefinition()
-
setDmnDefinition
public void setDmnDefinition(DmnDefinition dmnDefinition)
-
getDecisionService
public DecisionService getDecisionService()
-
setDecisionService
public void setDecisionService(DecisionService decisionService)
-
getDecision
public Decision getDecision()
-
setDecision
public void setDecision(Decision decision)
-
-