deprecatedclass %iKnow.Model.domain
extends nodeWithParameters
The InterSystems IRIS NLP iKnow technology is now deprecated. Please see the
product
documentation for more detail.
Model representation of an iKnow domain object. See also
%iKnow.Domain
property allowCustomUpdates
as %Boolean(XMLPROJECTION="attribute") [ InitialExpression = 0 ];
Whether or not to allow custom code to manually create domain objects, add sources, etc,
outside of any updates applied by this Domain Definition itself.
If set to false (default), only select operations remain available for custom code, such as
setting individual metadata values and building metrics.
relationship configurations
as %iKnow.Model.configuration(XMLELEMENTREF=1,XMLPROJECTION="ELEMENT",XMLTYPECONSTRAINT="CHOICE") [ Inverse = domain,Cardinality = many ];
The configurations used by this domain
property data
as %iKnow.Model.data(XMLPROJECTION="element");
Wrapper object for all source data locations that should be loaded into this domain.
property disabled
as %Boolean(XMLPROJECTION="attribute");
If set to 0, no domain is generated for this definition, nor is the contents of
this >domain< element validated.
relationship expressions
as %iKnow.Model.expression(XMLELEMENTREF=1,XMLNAME="expression",XMLPROJECTION="ELEMENT",XMLTYPECONSTRAINT="CHOICE") [ Inverse = domain,Cardinality = many ];
Expression elements for use in this domain definition
property matching
as %iKnow.Model.matching(XMLPROJECTION="element");
Wrapper object for all dictionary data that should be loaded into this domain.
property metadata
as %iKnow.Model.metadata(XMLPROJECTION="element");
Metadata info for this domain
property metrics
as %iKnow.Model.metrics(XMLPROJECTION="element");
Metrics for this domain
property name
as %String(MAXLEN=150,XMLPROJECTION="attribute");
The name of the domain, which should be unique within the namespace
property objectsPackage
as %String(MAXLEN=150,XMLPROJECTION="attribute");
If nonempty, objects will be generated representing the various elements in iKnow indexing
results in the package named in this attribute. Existing objects will be replaced.
relationship skiplists
as list of %iKnow.Model.skiplist(XMLELEMENTREF=1,XMLNAME="skiplist",XMLPROJECTION="ELEMENT",XMLTYPECONSTRAINT="CHOICE") [ Inverse = domain,Cardinality = many ];
Skiplists for use in this domain
relationship userDictionaries
as list of %iKnow.Model.userDictionary(XMLELEMENTREF=1,XMLNAME="userDictionary",XMLPROJECTION="ELEMENT",XMLTYPECONSTRAINT="CHOICE") [ Inverse = domain,Cardinality = many ];
User Dictionaries for use in any configuration objects declared in this definition
method %SaveToClass(pClassName As %String, pOverwriteExisting As %Boolean = 1, pVerbose As %Boolean = 0, pCompile As %Boolean = 1, pSuper As %String = "%iKnow.DomainDefinition")
as %Status
Saves this Domain Definition to a class
method %ToString(Output pString As %String, pFormatted As %Boolean = 1)
as %Status
Outputs this Domain Definition as a %String
method %Validate()
as %Status
Validates the domain name and its primary parameters, essential to the creation of the domain.
%ValidateContent will be called after the domain is instantiated to perform
further validation on <domain> contents, being passed the domains ID
method %ValidateContent(pDomainId As %Integer)
as %Status
Valiates the child elements of this domain, including <list> and its descendants.
This method gets passed in the domain ID of the domain being validated, which could be
required for some (nested) checks.
method %ValidateStatic(pDomainId As %Integer)
as %Status
This method validates all static elements of the domain, such as metadata field definitions,
metrics and any configuration and/or user dictionary objects embedded in this domain definition.