%ZEN.Template.WebServicePolicyWizard
deprecated class %ZEN.Template.WebServicePolicyWizard extends %ZEN.Template.studioTemplate
Studio Template: New Web Service/Client Configuration.Property Inventory
Method Inventory
- %OnAfterCreatePage()
- %OnTemplateAction()
- DrawDetailsContent()
- DrawMessage()
- DrawNumSOAPClasses()
- DrawPageTitle()
- GetMutualInfo()
- GetPolicyMessage()
- GetProtectionInfo()
- GetSSLInfo()
- GetSymmetricInfo()
- GetX509Info()
- LoadList()
- canFinish()
- canGoBack()
- canGoNext()
- changePolicy()
- changeSecConv()
- changeService()
- changeType()
- formValidationHandler()
- getFinalValue()
- hasMultiplePages()
- nextPage()
- onfinishHandler()
- onstartHandler()
- previousPage()
- resetMsg()
- showMsg()
- validateConfigurationName()
Parameters
parameter DOMAIN = %ZEN;
Domain used for localization.
parameter HELPID = GSOAPSEC_wsp_creating_policies;
Inherited description: DOCBOOK Topic Id that offers help for this template.
parameter TEMPLATEDESCRIPTION = Create a new Web Service/Client Configuration.;
Inherited description: Short description of the template to show in Studio.
If DOMAIN is defined this will be localized.
If DOMAIN is defined this will be localized.
parameter TEMPLATEGROUP = General;
Inherited description: If this is a TEMPLATEMODE="new" then this is the name of the tab
in Studio this template is dispayed on. If none specified then
it displays on 'Custom' tab.
parameter TEMPLATEMODE = new;
What type of template.
parameter TEMPLATENAME = Web Service/Client Configuration;
Inherited description: Name of the template to show in Studio.
If DOMAIN is defined this will be localized.
If DOMAIN is defined this will be localized.
parameter TEMPLATETITLE = Web Service/Client Configuration Wizard;
Inherited description: Title of the template to show in the template window.
parameter TEMPLATETYPE = cls;
Inherited description: Comma separated list of 'CSP', 'CSR', 'MAC', 'INT', 'INC',
'BAS', 'CLS' to say what type of code this template
generates; CSP, CSR, Routine, or Class code.
You can also specify '*' for all types.
Properties
property ConfigClass as %ZEN.Datatype.string;
Property methods: ConfigClassDisplayToLogical(), ConfigClassGet(), ConfigClassIsValid(), ConfigClassLogicalToDisplay(), ConfigClassLogicalToOdbc(), ConfigClassNormalize(), ConfigClassSet()
property FINALRESULTS as %String;
Property methods: FINALRESULTSDisplayToLogical(), FINALRESULTSGet(), FINALRESULTSIsValid(), FINALRESULTSLogicalToDisplay(), FINALRESULTSLogicalToOdbc(), FINALRESULTSNormalize(), FINALRESULTSSet()
property IsClient as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
Property methods: IsClientDisplayToLogical(), IsClientGet(), IsClientIsValid(), IsClientLogicalToDisplay(), IsClientLogicalToOdbc(), IsClientLogicalToXSD(), IsClientNormalize(), IsClientSet(), IsClientXSDToLogical()
property NumSOAPClasses as %ZEN.Datatype.integer [ InitialExpression = 0 ];
If NumSOAPClasses is greater than 1, then the Config Class field and Finish button are disabled.
If NumSOAPClasses is 1, then the Config Class is set to the first piece of ConfigId found, and modification of it is not allowed.
Else the Config Class is set to TargetClass_"Config"
If NumSOAPClasses is 1, then the Config Class is set to the first piece of ConfigId found, and modification of it is not allowed.
Else the Config Class is set to TargetClass_"Config"
Property methods: NumSOAPClassesDisplayToLogical(), NumSOAPClassesGet(), NumSOAPClassesIsValid(), NumSOAPClassesLogicalToDisplay(), NumSOAPClassesLogicalToOdbc(), NumSOAPClassesNormalize(), NumSOAPClassesSet()
property lblNONE as %ZEN.Datatype.caption [ InitialExpression = $$$Text("(No security is required.)") ];
Property methods: lblNONEDisplayToLogical(), lblNONEGet(), lblNONEIsValid(), lblNONELogicalToDisplay(), lblNONELogicalToOdbc(), lblNONENormalize(), lblNONESet()
property lblSEC as %ZEN.Datatype.caption [ InitialExpression = $$$Text("(Click [Next] to specify more policy details.)") ];
Property methods: lblSECDisplayToLogical(), lblSECGet(), lblSECIsValid(), lblSECLogicalToDisplay(), lblSECLogicalToOdbc(), lblSECNormalize(), lblSECSet()
Methods
method %OnAfterCreatePage() as %Status
Inherited description: This callback is called after the server-side page
object and all of its children are created.
Subclasses can override this to add, remove, or modify items within the page object model, or to provide values for controls.
Subclasses can override this to add, remove, or modify items within the page object model, or to provide values for controls.
method %OnTemplateAction() as %Status
This method is called when the template is complete. Any
output to the principal device is returned to the Studio.
This method draws policy detailed content.
Passing in code or policy type, display description of it.
This method is processed when user selects a CLASS type and clicks Next. TargetClass is passed in.
classmethod GetMutualInfo(code As %String)
classmethod GetProtectionInfo(code As %String)
classmethod GetSSLInfo(code As %String)
code passed in is the Security Policy code.
classmethod GetSymmetricInfo(code As %String)
code passed may contain code_R_ or code_I (if IsClient).
classmethod LoadList(Output Services) as %String
Return Services and Clients valueList to be loaded into drop-downs.
clientmethod canFinish() [ Language = javascript ]
Return true if this template can Finish (i.e., enable
the Finish button).
clientmethod canGoBack() [ Language = javascript ]
Return true if this template can go to the previous page (i.e., enable
the Back button).
clientmethod canGoNext() [ Language = javascript ]
Return true if this template can go to the next page (i.e., enable
the Next button).
clientmethod changePolicy(policy) [ Language = javascript ]
load, show/hide fiels based on policy selected.
clientmethod changeSecConv(flag) [ Language = javascript ]
enable/disable DERIVEDKEYS based on Secure Conversation
clientmethod changeService(CLASS) [ Language = javascript ]
user changed SERVER <=> CLIENT. need to reset any policy selection back to NONE.
clientmethod changeType(type, targetclass) [ Language = javascript ]
prepare for tab 2.
clientmethod formValidationHandler() [ Language = javascript ]
Validation handler for form built-into template.
clientmethod getFinalValue(fieldName, fieldType) [ Language = javascript ]
Return value of the given html field name and type.
clientmethod hasMultiplePages() [ Language = javascript ]
Inherited description: Return true if this template has more than one "page".
This will display Back and Next buttons.
This is implemented by subclasses.
clientmethod nextPage() [ Language = javascript ]
Go to the next page of the template (if there is one).
clientmethod onfinishHandler() [ Language = javascript ]
This is called when the template is finished - gather selected values and put into hidden Zen fields for %OnTemplateAction.
The extra work is needed because most policy specific fields are html controls rather than Zen controls.
The extra work is needed because most policy specific fields are html controls rather than Zen controls.
clientmethod onstartHandler() [ Language = javascript ]
This is called when the template is first displayed;
This provides a chance to set focus etc.
clientmethod previousPage() [ Language = javascript ]
Go to the previous page of the template (if there is one).
clientmethod resetMsg() [ Language = javascript ]
clientmethod showMsg(msg) [ Language = javascript ]
Inherited Members
Inherited Properties
- %condition
- %import
- %includeFiles
- %page
- %resource
- DocumentName
- DocumentNamespace
- Language
- Namespace
- Project
- SelectedText
- User
- align
- aux
- backgroundTimerInterval
- cellAlign
- cellSize
- cellStyle
- cellVAlign
- children
- composite
- containerStyle
- cssLevel
- disabled
- dragAndDrop
- dragEnabled
- dropEnabled
- enclosingClass
- enclosingStyle
- error
- groupClass
- groupStyle
- height
- helpId
- hidden
- hint
- hintClass
- hintStyle
- id
- index
- label
- labelClass
- labelDisabledClass
- labelPosition
- labelStyle
- layout
- name
- onafterdrag
- onbeforedrag
- onclick
- ondrag
- ondrop
- onhide
- onrefresh
- onshow
- onupdate
- parent
- showLabel
- slice
- title
- tuple
- useSVG
- useSoftModals
- valign
- visible
- width
- window
- zenPersistentPopup
Inherited Methods
- %AddChild()
- %AddChildAfter()
- %AddChildBefore()
- %AddComponent()
- %AddImportedComponents()
- %AddToProject()
- %AddToSaveSet()
- %AddToSourceControl()
- %ApplyURLParms()
- %Attr()
- %BindExport()
- %ClassIsLatestVersion()
- %ClassName()
- %ConstructClone()
- %DispatchClassMethod()
- %DispatchGetModified()
- %DispatchGetProperty()
- %DispatchMethod()
- %DispatchSetModified()
- %DispatchSetMultidimProperty()
- %DispatchSetProperty()
- %DrawAutoLogout()
- %DrawClassDefinitions()
- %DrawComponentHTML()
- %DrawHTML()
- %DrawHTMLPage()
- %DrawJSStrings()
- %DrawObjectDefinitions()
- %DrawTitle()
- %EnclosingDivId()
- %EndBackgroundMethod()
- %EndScript()
- %Eval()
- %EvalC()
- %Extends()
- %ForceClientRender()
- %GetChildIndex()
- %GetComponent()
- %GetComponentById()
- %GetComponentByName()
- %GetEventHandlers()
- %GetLinks()
- %GetPageName()
- %GetParameter()
- %GetValueById()
- %GetValueByName()
- %GetXMLName()
- %IsA()
- %IsModified()
- %Link()
- %LinkCSS()
- %LinkScript()
- %MakeId()
- %New()
- %NormalizeObject()
- %ObjectModified()
- %OnAddToPageAfter()
- %OnAddToPageBefore()
- %OnBeforeCreatePage()
- %OnCreateApplication()
- %OnCreatePage()
- %OnDetermineCSSLevel()
- %OnDrawEnclosingDiv()
- %OnDrawHTMLBody()
- %OnDrawHTMLHead()
- %OnDrawHTMLMeta()
- %OnDrawObjectProperties()
- %OnFinishBackgroundTask()
- %OnMonitorBackgroundTask()
- %OnMutateChildren()
- %OnObjectSynch()
- %OnPreHTTP()
- %OnSubmit()
- %OnUseSoftModals()
- %OnZENDeserialize()
- %OriginalNamespace()
- %PackageName()
- %QuoteValue()
- %QuoteValueL10N()
- %RemoveChild()
- %RemoveChildren()
- %RemoveComponent()
- %RemoveFromSaveSet()
- %RunBackgroundMethod()
- %Self()
- %SerializeObject()
- %SetBackgroundMethodStatus()
- %SetClassName()
- %SetErrorById()
- %SetErrorByName()
- %SetModified()
- %SetValueById()
- %SetValueByName()
- %SetValuesByName()
- %StartScript()
- %TemplateHeader()
- %ValidateObject()
- %ZENVersion()
- ConvertParameter()
- Decrypt()
- Encrypt()
- EscapeHTML()
- EscapeURL()
- HyperEventCall()
- HyperEventHead()
- Include()
- InsertHiddenField()
- InsertHiddenFields()
- IsEnabled()
- IsPrivate()
- IsValidClassName()
- JavaInstalled()
- Link()
- LocalizeName()
- OnHTTPHeader()
- OnPage()
- OnPageError()
- OnPostHTTP()
- OnPostHyperEvent()
- OnPreHTTP()
- OnPreHyperEvent()
- Page()
- QuoteJS()
- RewriteURL()
- ShowError()
- StartTimer()
- StopTimer()
- ThrowError()
- UnescapeHTML()
- UnescapeURL()
- XMLDTD()
- XMLExport()
- XMLExportToStream()
- XMLExportToString()
- XMLNew()
- XMLSchema()
- XMLSchemaNamespace()
- XMLSchemaType()
- addChild()
- addChildAfter()
- addChildBefore()
- adjustSize()
- cancelPopup()
- cancelTemplate()
- childrenMutated()
- correctIELayering()
- createComponent()
- createComponentNS()
- deleteComponent()
- dragFinishHandler()
- dragHandler()
- dragNotifyHandler()
- dragStartHandler()
- dropHandler()
- dropStartHandler()
- endModal()
- exposeComponent()
- findElement()
- finishTemplate()
- fireOnResizeEvent()
- fireOnUnloadEvent()
- fireOnUpdateEvent()
- firePopupAction()
- getChildIndex()
- getComponent()
- getComponentById()
- getEnclosingDiv()
- getHidden()
- getHintElement()
- getLabelElement()
- getOpener()
- getProperty()
- getSettings()
- getType()
- gotoPage()
- invokeSuper()
- isOfType()
- launchPopupWindow()
- makeId()
- onCreate()
- onDelete()
- onDisplayHandler()
- onEndModalHandler()
- onPopupAction()
- onRefreshContents()
- onSerialize()
- onServerMethodCall()
- onServerMethodError()
- onServerMethodReturn()
- onStartModalHandler()
- ondisabledHandler()
- onhandleAutoLogoutWarn()
- onkeydownHandler()
- onkeyupHandler()
- onlayoutHandler()
- onloadHandler()
- onlogoutHandler()
- onoverlayHandler()
- onresizeHandler()
- onunloadHandler()
- onupdateHandler()
- popupActionHandler()
- refreshContents()
- removeChild()
- render()
- renderContents()
- renderSVG()
- setComponentId()
- setHidden()
- setOverlayMode()
- setProperty()
- setPropertyAll()
- setTraceOption()
- showDocumentation()
- showHelp()
- startModal()
- startProgressBar()
- stopProgressBar()
- updateState()