serial class %IPM.Storage.ModuleSetting.ProcessorDefault.Condition
extends %SerialObject, %XML.Adaptor, %IPM.Utils.ComparisonAdaptor
Tested in the SatisfiesCondition method of %IPM.ResourceProcessor.Abstract
parameter DEFAULTGLOBAL = "^IPM.Storage.ModSet.RP.Cond";
parameter NAMESPACE = "http://www.intersystems.com/PackageManager";
NAMESPACE specifies the XML namespace to be used when projecting the
class to XML. If NAMESPACE = "", the default namespace is used for the XML schema
is used as the namespace for his class.
property Attribute
as %String(MAXLEN=100,XMLPROJECTION="attribute") [ Required ];
Name of other attribute to test
property Operator
as %String(VALUELIST=",eq,neq,gt,lt,gte,lte,contains",XMLPROJECTION="attribute");
Comparison operator; if empty, "eq" is assumed (although not the InitialExpression for sake of XML re-export).
property Value
as %String(MAXLEN="",XMLPROJECTION="attribute");
Value to compare to - may be empty.