persistent class %IPM.Storage.LoadedResource
extends %Persistent
parameter DEFAULTGLOBAL = "^IRIS.Temp.IPM.LoadedResource";
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 |
property LoadedResource
as %String(MAXLEN=255) [ Required ];
property ModuleName
as %String(MAXLEN=255) [ Required ];
property Namespace
as %String(MAXLEN=64) [ Required ];
property ResourceUniqueName
as %String(MAXLEN=255) [ Required ];
classmethod Clear(pNamespace As %String = $Namespace)
as %Status
@API.Method
@Modifier Availability InterSystems
classmethod ReportConflicts()
@API.Method
@Modifier Availability InterSystems
classmethod TrackResourceNames(pModuleName As %String, pResourceName As %String, pResourceList As %String, pNamespace As %String = $Namespace)
as %Status
classmethod Validate(pNamespace As %String = $Namespace, Output pErrorList)
as %Status
@API.Method
@Modifier Availability InterSystems
index (LoadedResource on LoadedResource:Exact);
index (ModuleNameIndex on ModuleName) [Type = bitmap];
index (NamespaceIndex on Namespace) [Type = bitmap];
index (ResourceUniqueNameIndex on ResourceUniqueName) [Type = bitmap];
foreignkey ModuleNameFK (ModuleName)
references %IPM.Storage.Module (Name) OnDelete: cascade; OnUpdate: noaction
foreignkey ResourceUniqueNameFK (ResourceUniqueName)
references %IPM.Storage.ResourceReference (ResourceName) OnDelete: cascade; OnUpdate: noaction