persistent class %IPM.Storage.MappingReference
extends %Persistent, %XML.Adaptor, %IPM.Utils.ComparisonAdaptor
parameter DEFAULTGLOBAL = "^IPM.Storage.MappingReference";
If a persistent class uses %Storage.Persistent then the DEFAULTGLOBAL parameter is used as the
default global root for the values of the storage keywords COUNTERLOCATION, DATALOCATION, IDLOCATION,
INDEXLOCATION and STREAMLOCATION in the active storage definition. DEFAULTGLOBAL is only used
to generate location keyword values that are not already defined. The location value is constructed by adding
a location type to the end of DEFAULTGLOBAL. For example, if DEFAULTGLOBAL = "^GL.Account"
the compiler will generate DATALOCATION = ^GL.AccountD.
If USEEXTENTSET is true, then DEFAULTGLOBAL is used as the default extent location.
The location types are:
Location | Type |
---|
COUNTERLOCATION | C |
DATALOCATION | D |
IDLOCATION | D |
INDEXLOCATION | I |
STREAMLOCATION | S |
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 Deploy
as %Boolean(XMLPROJECTION="ATTRIBUTE");
If set to true, this source code is not shipped in application packaging.
(Of course, it must be included in module packaging.)
relationship Module
as %IPM.Storage.Module(XMLPROJECTION="NONE") [ SqlFieldName = ModuleItem,Inverse = Mappings,Cardinality = parent ];
property Name
as %String(MAXLEN=2048,XMLPROJECTION="attribute") [ Required ];
property Source
as %String(MAXLEN=64,XMLPROJECTION="ATTRIBUTE");
Database from which it is mapped or copied
property SourceResolved
as %String(MAXLEN=64,XMLPROJECTION="NONE");
Resolved value after evaluating any permitted expressions in Source.
index (ResourceName on Name,Source);
Name index is unique per namespace.