class %IPM.ResourceProcessor.CSPApplication
extends %IPM.ResourceProcessor.Abstract, %XML.Adaptor, %Installer.CSPApplication
parameter ATTRIBUTES;
Comma-separated list of resource attribute names that this processor uses
parameter DESCRIPTION = "Facilitates CSP application definition/configuration during module installation process.";
Description of resource processor class (shown in UI)
parameter XMLNAME = "IPMCSPApplication";
Overridden to avoid issues in %Installer generation
parameter XMLTYPE = "IPMCSPApplication";
Overridden to avoid issues in %Installer generation
property CookiePath
as %String(MAXLEN=256);
Cookie Path
property DeepSeeEnabled
as %Installer.Boolean [ InitialExpression = 0 ];
DeepSee Enabled
property DelegatedAuthEnabled
as %Boolean [ InitialExpression = 0 ];
Delegated authentication enabled
property Directory
as %String(ATTRIBUTEREQUIRED=0,MAXLEN=1024) [ Required ];
Physical path for CSP files
property DispatchClass
as %String(MAXLEN=256);
If defined, this will dispatch all requests in this CSP application to this one class
property Enabled
as %Boolean [ InitialExpression = 1 ];
Enabled
property KerberosAuthEnabled
as %Boolean [ InitialExpression = 0 ];
Kerberos authentication enabled
property LoginTokenEnabled
as %Boolean [ InitialExpression = 0 ];
Login token authentication enabled
property MatchRoles
as %String(MAXLEN=32767);
Mapping of Match Roles to added Target Role
property PasswordAuthEnabled
as %Boolean [ InitialExpression = 0 ];
Password authentication enabled
property PermittedClasses
as %String(MAXLEN=32767);
PermittedClasses default
property UnauthenticatedEnabled
as %Boolean [ InitialExpression = 0 ];
Unauthenticated access enabled
property iKnowEnabled
as %Installer.Boolean [ InitialExpression = 0 ];
iKnow Enabled
classmethod ActivateDelegated(Role As %String = "")
as %Status
Enable Delegated Auth system-wide
And add role to CSPSystem, so, it will have access to do delegated auth
method GetSourceControlInfo(Output pInfo As %IPM.ExtensionBase.SourceControl.ResourceInfo)
as %Status
method OnAfterPhase(pPhase As %String, ByRef pParams)
as %Status
method OnBeforeArtifact(pExportDirectory As %String, pWorkingDirectory As %String, ByRef pParams)
as %Status
method OnBeforePhase(pPhase As %String, ByRef pParams)
as %Status
method OnGetStudioProject(pProject As %Studio.Project, Output pHandled As %Boolean = 0)
Subclasses may override to customize the studio project. (e.g., things that use web applications will do this.)
method OnGetUniqueName(Output pUniqueName)
Returns a unique name for this resource.
Default implementation, leaving pUniqueName undefined, reverts to default behavior.
An empty string indicates guaranteed uniqueness (useful for folders relative to module root)
method OnItemRelativePath(pItemName As %String)
as %String
Returns the path relative to the module root for item pItemName within this resource.
method ReplaceMatchRoles(matchRoles As %String, dbDir As %String)
as %String