persistent class Ens.Enterprise.MsgBank.Log
extends %Persistent, Ens.Util.LogBase, %XML.Adaptor
Subclass of Ens.Util.Log that lives only on the Message Bank Server, incorporating the original event log entry from the client plus a record of the client node it came from
parameter XMLTYPE = "MsgBankLogEvent";
This parameter provides the default XMLTYPE for the class. If it is
empty then the class name will be used to construct a default XML type.
The default XMLTYPE is used when naming and referencing this type
in a schema and the schema context did not provide an XML type name.
property ClientId
as %Integer(MINVAL=1) [ Calculated,Transient,ReadOnly ];
property ClientSessionId
as %Integer(MINVAL=1) [ Calculated,Transient,ReadOnly ];
property ID
as %Integer(MINVAL=1,XMLPROJECTION="NONE");
property NodeId
as %Integer(MAXVAL=999,MINVAL=100) [ Calculated,Transient,ReadOnly ];
property TimeBanked
as Ens.DataType.UTC [ InitialExpression = $ZDT($ZTS,3,,3) ];
method ClientIdGet()
as %Integer
This is a Get accessor method for the ClientId property.
method ClientSessionIdGet()
as %Integer
This is a Get accessor method for the ClientSessionId property.
method NodeIdGet()
as %Integer
This is a Get accessor method for the NodeId property.
method SetEventId(pNodeClientId As %Integer)
The same as %IdSet(), but works even if the object hasn't been saved already
index (ConfigName on ConfigName) [Type = bitmap];
index (Extent on ) [Extent,Type = bitmap];
index (ID on ID) [IdKey];
index (TimeLogged on TimeLogged);
index (Type on Type) [Type = bitmap];