persistent class %IPM.Storage.SystemRequirements
extends %Persistent, %XML.Adaptor
parameter DEFAULTGLOBAL = "^IPM.Storage.SystemRequirements";
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 Health
as %Boolean(XMLPROJECTION="ATTRIBUTE");
property Interoperability
as %String(VALUELIST=",enabled,disabled",XMLPROJECTION="ATTRIBUTE");
property Version
as %IPM.General.SemanticVersionExpression(XMLPROJECTION="NONE");
property VersionString
as %String(MAXLEN=100,XMLNAME="Version",XMLPROJECTION="ATTRIBUTE");
method CheckHealth()
as %Status
method CheckInteroperability()
as %Status
Checks if Interoperability specification is satisfied. Health="true" implies Interoperability="enabled"
method CheckRequirements()
as %Status
method CheckVersion()
as %Status
classmethod IsHealthInstance()
as %Boolean
classmethod IsInteroperabilityEnabled()
as %Boolean
method VersionStringSet(tValue)
as %Status
This is a Set accessor method for the VersionString property.