persistent class %IPM.Repo.Remote.Definition
extends %IPM.Repo.Definition
parameter DISPLAYNAME = "Remote Repository";
Display name for this type of repository, shown in the UI and package manager shell.
parameter MONIKER = "registry";
Short/logical name for this type of repository, used in the package manager shell as an alternative to the full class name.
parameter MONIKERALIAS = "remote";
parameter URLPromptString;
property DeploymentEnabled
as %Boolean [ InitialExpression = 0 ];
property Details
as %String(MAXLEN="");
property Password
as %String(MAXLEN="");
property Token
as %String(MAXLEN="");
property URL
as %String(MAXLEN=2048) [ Required ];
property Username
as %String(MAXLEN="");
method Display()
Outputs information about this server to the current device.
Subclasses may override to show additional information.
method GetPackageService()
as %IPM.Repo.IPackageService
Returns a REST client to interact with this server.
method GetPublishService()
as %IPM.Repo.IPublishService
Returns a REST client to publish modules/applications to this server.
classmethod OnConfigure(pInstance As %IPM.Repo.Definition, pInteractive As %Boolean = 1, ByRef pModifiers, ByRef pData)
as %Status
Handles modifiers/data attributes provided from the package manager shell.
query PublishingServer()
SQL Query
:
SELECT
CASE
WHEN DeploymentEnabled = 1 THEN 1
WHEN Token IS NOT NULL THEN 2
WHEN Username IS NOT NULL AND Password IS NOT NULL THEN 3
ELSE 999
END PublishOrder,
ID, Name, URL
FROM %IPM_Repo_Remote.Definition
WHERE Enabled = 1
ORDER BY PublishOrder, ID
index (DeploymentServer on DeploymentEnabled) [Unique];
index (URL on URL) [Unique];