persistent class Ens.Rule.SubRule
extends %Persistent, %XML.Adaptor
Defines a SubRule of a Business Rule or another SubRule within a Rule Set.
SubRules do not share the storage with Rules and there is no parent-child relationship with RuleSet.
SubRules are not independently evaluated neither they generate separate code.
parameter XMLIGNORENULL = 1;
Ensure that we don't get $C(0) for values that are empty strings
relationship Actions
as SubAction(XMLNAME="action",XMLPROJECTION="ELEMENT") [ Inverse = SubRule,Cardinality = children ];
Collection of optional actions associated with this SubRule.
relationship Conditions
as SubCondition(XMLNAME="condition",XMLPROJECTION="ELEMENT") [ Inverse = SubRule,Cardinality = children ];
Collection of conditions that define this SubRule.
property Disabled
as %Boolean(XMLNAME="disabled",XMLPROJECTION="ATTRIBUTE");
If false, then this SubRule is enabled; otherwise this SubRule is not evaluated.
property ReturnValue
as %String(MAXLEN=128,XMLNAME="return",XMLPROJECTION="ATTRIBUTE");
If defined, value returned if this SubRule is true.
property RuleNo
as %Integer(XMLPROJECTION="NONE") [ InitialExpression = $I(^Ens.Rule.RuleC("RuleNo")) ];
property SubRules
as list of SubRule(XMLNAME="rule",XMLPROJECTION="ELEMENT");
Collection of SubRules of this SubRule.
classmethod %OnDelete(oid As %ObjectIdentity)
as %Status
This callback method is invoked by the %Delete method to
provide notification that the object specified by oid is being deleted.
If this method returns an error then the object will not be deleted.
method GenerateCode(pCompiler As Compiler, pRuleNo As %Integer)
as %Status
Generate code for this SubRule.
pRuleNo gives the ordinal position of this SubRule within the Rule Set.
index (ID on RuleNo) [IdKey];
Make sure SubRules are ordered correctly