Auto-logon extension point
The IBM Sales Center workbench provides a preference page for turning on/off auto-logon for web applications. The purpose of this extension point is to allow plug-ins to identify which web applications support auto-logon and should be presented within the preference page.
Identifier:
com.ibm.commerce.telesales.config.autoLogon
Description:
The IBM Sales Center workbench provides a preference page for turning on/off auto-logon for web applications. The purpose of this extension point is to allow plug-ins to identify which web applications support auto-logon and should be presented within the preference page.
Configuration Markup:
<!ELEMENT extension ( autoLogon+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - The fully qualified identifier of the target extension point.
- id - An optional identifier for the target extension point
- name - An optional name for the extension instance
<!ELEMENT autoLogon EMPTY>
<!ATTLIST autoLogon
id CDATA #REQUIRED
label CDATA #REQUIRED
tooltip CDATA #IMPLIED>
- id - The unique name that will be used to identify the web application. This value should match the id attribute of the corresponding com.ibm.eswe.workbench.WctWebApplication definition.
- label - A translatable text used as the check box option's text. The name can include mnenomic information.
- tooltip - A translatable text string representing the checkbox option's hover help.
Examples:
The following is an example for the autoLogon extension point:
<extension
point=
"com.ibm.commerce.telesales.config.autoLogon"
>
<autoLogon
id=
"com.ibm.commerce.telesales.ui.impl.acceleratorWebApp"
label=
"%acceleratorAutoLogonLabel"
tooltip=
"%acceleratorAutoLogonTooltip"
>
</autoLogon>
</extension>
API Information:
The value of the attribute
idshould be the fully qualified name of an
idgiven within an extender definition for
com.ibm.eswe.workbench.WctWebApplication.
Supplied Implementation:
The workbench uses the autoLogon extension point when the IBM Sales Center Auto-logon preference page is requested.