Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%IPM] >  [General] >  [AbstractSettings]
Private  Storage   

abstract persistent class %IPM.General.AbstractSettings extends %Persistent, %IPM.General.Singleton, %IPM.General.IConfigurable

Intended use case: If you want a configuration-related class of which there will be at most one instance, that has settings with names defined in code (not just magic strings, and possibly with default values) that are configurable via the "init" command in the Package Manager shell and the Package Manager > Configuration menu item, extend AbstractSettings and add some properties, and you get all that. The description of the settings is taken from the triple-slash documentation for them.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 1 7 1


Summary

Properties
Key

Methods
%AddToSaveSet %AddToSyncSet %BuildDeferredIndices %BuildIndices
%BuildIndicesAsync %BuildIndicesAsyncResponse %CheckConstraints %CheckConstraintsForExtent
%ClassIsLatestVersion %ClassName %ComposeOid %ConstructClone
%Delete %DeleteExtent %DeleteId %DispatchClassMethod
%DispatchGetModified %DispatchGetProperty %DispatchMethod %DispatchSetModified
%DispatchSetMultidimProperty %DispatchSetProperty %Exists %ExistsId
%Extends %GUID %GUIDSet %Get
%GetLock %GetParameter %GetSwizzleObject %Id
%IsA %IsModified %IsNull %KillExtent
%LockExtent %LockId %New %NormalizeObject
%ObjectIsNull %ObjectModified %Oid %OnBeforeAddToSync
%OnDeleteFinally %OnDetermineClass %OnOpenFinally %OnSaveFinally
%Open %OpenId %OriginalNamespace %PackageName
%PurgeIndices %Reload %RemoveFromSaveSet %ResolveConcurrencyConflict
%RollBack %Save %SaveDirect %SerializeObject
%SetModified %SortBegin %SortEnd %SyncObjectIn
%SyncTransport %UnlockExtent %UnlockId %ValidateObject
ClearSettingValue GetSettingType GetSettingValue GetSettingsParameterValue
ListSettingsClose ListSettingsExecute ListSettingsFetch SetSettingValue
SettingIsDefined

Subclasses
%IPM.ExtensionBase.UniversalSettings %IPM.General.Settings

Parameters

• parameter SETTINGS = "..GetSettingsParameterValue()";
A delimited string in the format: Key:Description[|Key:Description...]

Properties

• property Key as %String [ InitialExpression = "Settings",ReadOnly ];

Methods

• classmethod ClearSettingValue(pName As %String) as %Status
Clears value of setting pName
• classmethod GetSettingType(pName As %String) as %String
Returns the datatype of a setting, as one of: boolean, string The default implementation is to always return "string"
• classmethod GetSettingValue(pName As %String) as %String
Clears value of setting pName
• classmethod GetSettingsParameterValue() as %String
Returns a list of all properties available as "settings" (for IConfigurable), along with their triple-slash comments as descriptions. Omits calculated, multidimensional, transient, and read-only properties.
• classmethod SetSettingValue(pName As %String, pValue As %String) as %Status
Sets setting pName to pValue. Should return an error %Status if pValue is invalid.
• classmethod SettingIsDefined(pName As %String) as %Boolean
Returns true if a value is defined for setting pName.

Indices

•index (Key on Key) [IdKey,Unique];


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.