|
Class: AbstractServerSettingsApplication
Object
|
+--Model
|
+--ApplicationModel
|
+--AbstractSettingsApplication
|
+--AbstractServerSettingsApplication
|
+--HTTPServerSettingsAppl
|
+--HTTPServerSettingsAppl::AuthorizationSettingsAppl
|
+--HTTPServerSettingsAppl::CertificateSettingsAppl
|
+--HTTPServerSettingsAppl::LoggingSettingsAppl
|
+--HTTPServerSettingsAppl::PluggableServicesSettingsAppl
|
+--HTTPServiceSettingsApplication
|
+--SoapSettingsApplication
- Package:
- stx:goodies/webServer/ui
- Category:
- Net-Communication-HTTP-Settings
- Version:
- rev:
1.44
date: 2021/11/22 14:15:12
- user: cg
- file: AbstractServerSettingsApplication.st directory: goodies/webServer/ui
- module: stx stc-classLibrary: ui
Abstract superclass for HTTP-Server settings applications.
Instances of me are meant to be used as subcanvas in a
SettingsDialog (switched when seleting tree items).
copyrightCOPYRIGHT (c) 2003 by eXept Software AG
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
defaults
-
nameInSettingsDialog
-
queries
-
isAbstract
-
Return if this class is an abstract class.
True is returned here for myself only; false for subclasses.
Abstract subclasses must redefine this again.
accessing
-
defaultSettingsApplication
-
-
defaultSettingsApplication: aBoolean
-
-
httpServerInstance
-
return the value of the instance variable 'httpServerInstance' (automatically generated)
-
httpServerInstance: anHTTPServer
-
set the value of the instance variable 'httpServerInstance' (automatically generated)
-
nameInSettingsDialog
-
-
parentApplication
-
return the value of the instance variable 'parentApplication' (automatically generated)
-
parentApplication: something
-
set the value of the instance variable 'parentApplication' (automatically generated)
-
subApplications
-
return the value of the instance variable 'subApplications' (automatically generated)
actions
-
basicSaveSettings
-
(comment from inherited method)
utility to save aspects as listed in the aspects method.
If that has not been redefined, an error will be reported,
as you should then redefine this method in a subclass
-
readSettings
-
actions-subApplications
-
addSettingsApplicationForService: aService
-
-
createServerSubApplication: aSubApplicationClass preInitialize: aPreInitializeBlock expand: aBoolean
-
not used
-
createServerSubApplications: aClassList
-
-
createServerSubApplications: aClassList preInitialize: aPreInitializeBlock
-
-
createServerSubApplications: aClassList preInitialize: aPreInitializeBlock expand: doExpand
-
-
hasSubApplicationFor: aSettingsApplication
-
-
openAndCloseServiceSettingsApplications
-
-
removeServerSubApplicationsFor: aApplicationList
-
-
removeServerSubApplicationsFor: anApplicationList eachDo: aBlock
-
item for this applicational not available
-
removeSettingsApplicationForService: aService
-
-
subApplicationFor: aSettingsApplication
-
(comment from inherited method)
sent by subCanvas to ask for an application inside itself.
The argument, aKey comes from a TabList-specs majorKey.
Here, a corresponding message is sent to myself,
which ought to be defined in the application subclass.
Alternatively, a subclass may redefine this method, to provide
an application from a Dictionary or whatever.
Typically, an ApplicationModel subinstance is returned there.
aspects
-
isServiceSettingsApplication
-
-
serverStatus
-
return the valueHolder on the serverStatus string
initialization & release
-
initialize
-
(comment from inherited method)
must be called if redefined
-
release
-
(comment from inherited method)
remove all references to objects that may refer to self.
Subclasses may redefine this method but should do a 'super release'.
queries
-
itemPathNameForSubApplication: aSubApplication
-
-
serverIsRunning
-
|