persistent class %Report.ServerDefinition
extends %Persistent
This class defines the storage for a Report Server Definition.
property Host
as %String(MAXLEN=256,PATTERN="") [ Required ];
The host where the Logi Report server is running.
Can be specified as an IPv4 or IPv6 address, or as a hostname
property Name
as %String(MAXLEN=128) [ Required ];
The name of the report server definition
property Port
as %Integer(MAXVAL=65535,MINVAL=1) [ InitialExpression = 8888,Required ];
The port on the Host for the Report Server.
property SSOEnabled
as %Boolean [ Required ];
query ByName(name As %String = "")
Selects
ID, Name, Host, Port
SQL Query
:
Select %ID,Name,Host,Port
From %Report.ServerDefinition
Order By Name
Return the set of Report Server Definitions.
query WhereID(id As %String = "")
Selects
Name
SQL Query
:
Select Name
From %Report.ServerDefinition
WHERE %ID=:id
Return the Report Server Definition by specified id
index (NameIdx on Name) [Unique];
trigger CreateDefaultRoles
(AFTER event INSERT/UPDATE)Creates the "admin" and "guest" roles for this report server
trigger DeleteRoles
(BEFORE event DELETE)Deletes all roles for this %Report.ServerDefinition object
trigger UpdateRoles
(BEFORE event UPDATE)Updates all roles for %Report.ServerDefinition objects after report server rename
Renames each role from <{Name*O}>_ to <..Name>_
Replaces all instances of <{Name*O}> in role description with ..Name