persistent class Ens.Enterprise.MonitorClient
extends %Persistent, %XML.Adaptor
property HomePage
as %String;
property HomePath
as %String(MAXLEN=250);
property Name
as %String [ Required ];
property Namespace
as %String;
property QueueThreshold
as %String;
property SOAPCredentials
as %String;
property SSLCheckServerIdentity
as %Boolean [ InitialExpression = 1 ];
property SSLConfig
as %String;
property ServicePath
as %String;
property Version
as %String;
property WebIPAddress
as %String(MAXLEN=250);
classmethod %OnAfterDelete(oid As %ObjectIdentity)
as %Status
This callback method is invoked by the %Delete method to
provide notification that the object specified by oid has been deleted.
The callback occurs immediately after %DeleteData has been called. If %DeleteData returns
an error then %OnAfterDelete is not called.
If %OnAfterDelete returns an error (%Status) then the transaction is rolled back.
classmethod EnumerateClientsClose(ByRef qHandle As %Binary)
as %Status
classmethod EnumerateClientsExecute(ByRef qHandle As %Binary)
as %Status
classmethod EnumerateClientsFetch(ByRef qHandle As %Binary, ByRef Row As %List, ByRef AtEnd As %Integer = 0)
as %Status
method GetURLPath(pServicePath As %Integer = 0)
as %String
classmethod getNodeClient(pNodeId)
as %String
Find a client connection name for the given NodeId, if possible; otherwise return the NodeId+NodeName
classmethod rebuildNodeMap()
query EnumerateClients()
Selects
ID As %String, IsNode As %Boolean, Name As %String, NodeId As %Integer, WebIPAddress As %String, Namespace As %String, SOAPCredentials As %String, SSLConfig As %String, HomePath As %String, HomePage As %String, Version As %String, QueueThreshold As %String, ServicePath As %String, SSLCheckServerIdentity As %Boolean
index (Name on Name) [IdKey,Unique];