persistent class Ens.Rule.Router.Condition
extends %Persistent, %XML.Adaptor
Specialized version of Rule condition used within RoutingRules
parameter XMLIGNORENULL = 1;
Ensure that we don't get $C(0) for values that are empty strings
property CondNo
as %Integer(XMLPROJECTION="none") [ InitialExpression = $I(^Ens.Rule.ConditionC("CondNo")) ];
property JoinOperator
as %String(MAXLEN=3,VALUELIST=",AND,OR",XMLNAME="join",XMLPROJECTION="attribute") [ InitialExpression = "AND",Required ];
How this condition is joined with the previous one.
property Operand1
as %String(MAXLEN=2500,XMLNAME="op1",XMLPROJECTION="attribute");
First operand for condition.
An operand is one of the following:
A string literal (within quotes)
A numeric literal
A property name (of a property within the associated Business Process context)
The name of another RuleDefinition associated with the same Busiess Process (rule name starts with #)
property Operand2
as %String(MAXLEN=2500,XMLNAME="op2",XMLPROJECTION="attribute");
Second operand for condition.
An operand is one of the following:
A string literal (within quotes)
A numeric literal
A property name (of a property within the associated Business Process context)
The name of another RuleDefinition associated with the same Busiess Process (rule name starts with #)
property Operator
as %String(MAXLEN=20,VALUELIST=",=,!=,>,>=,<,<=,Contains,DoesNotContain,In,NotIn,StartsWith,DoesNotStartWith,Like,NotLike,Matches,DoesNotMatch,InFile,NotInFile,IntersectsList,DoesNotIntersectList",XMLNAME="operator",XMLPROJECTION="attribute");
Operator used for this condition.
relationship Rule
as Ens.Rule.Router.Rule [ Inverse = Conditions,Cardinality = parent ];
Parent Rule.
method GetExpression()
as %String
Return the logical expression for this condition.
classmethod GetJoinList()
as %String
Called by U.I. to get list of join operators.
index (ID on CondNo) [IdKey];
Make sure conditions are ordered correctly