persistent class %IPM.Storage.InvokeReference
extends %Persistent, %XML.Adaptor
parameter DEFAULTGLOBAL = "^IPM.Storage.InvokeReference";
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 Arg
as list of %String(MAXLEN=255,XMLNAME="Arg",XMLPROJECTION="ELEMENT");
property CheckStatus
as %Boolean(XMLPROJECTION="ATTRIBUTE") [ InitialExpression = 0 ];
property Class
as %String(MAXLEN=255,XMLPROJECTION="ATTRIBUTE") [ Required ];
property Method
as %String(MAXLEN=255,XMLPROJECTION="ATTRIBUTE") [ Required ];
relationship Module
as %IPM.Storage.Module(XMLPROJECTION="NONE") [ SqlFieldName = ModuleItem,Inverse = Invokes,Cardinality = parent ];
property Phase
as %String(MAXLEN=255,XMLPROJECTION="ATTRIBUTE") [ InitialExpression = "Configure" ];
property When
as %String(MAXLEN=255,VALUELIST=",Before,After",XMLPROJECTION="ATTRIBUTE") [ SqlFieldName = _WHEN,InitialExpression = "After" ];
method GetArgsArray(pParams, Output args)
as %Status
method OnAfterPhase(pPhase As %String, ByRef pParams)
as %Status
method OnBeforePhase(pPhase As %String, ByRef pParams)
as %Status
method doInvoke(ByRef pParams)
as %Status