| barracudaDiscRack.BarracudaDiscRackEnhydra
BarracudaDiscRackEnhydra | public class BarracudaDiscRackEnhydra extends StandardApplication (Code) | | The application object.
Application-wide data would go here.
|
Method Summary | |
protected void | ensureSession(HttpPresentationComms comms) Default method used by requestPreprocessor
to ensure that a session exists and initialize the
session and sessionData fields
in the HttpPresentationComms object.
New sessions are only created on requests to presentation
objects, not requests for other types of files (such as gifs).
This avoids allocating multiple sessions when a browser makes
multiple requests for HREFs. | public boolean | requestPreprocessor(HttpPresentationComms comms) | public void | shutdown() | public void | startup(Config appConfig) | public String | toHtml() This is an optional function, used only by the Multiserver's graphical
administration. |
ensureSession | protected void ensureSession(HttpPresentationComms comms) throws ApplicationException(Code) | | Default method used by requestPreprocessor
to ensure that a session exists and initialize the
session and sessionData fields
in the HttpPresentationComms object.
New sessions are only created on requests to presentation
objects, not requests for other types of files (such as gifs).
This avoids allocating multiple sessions when a browser makes
multiple requests for HREFs. If the session already exist, it
is alwasy set in comms
This normally looks up the session using a session key from
a cookie.
Parameters: comms - Object containing request, response and redirect objects. exception: ApplicationException - If an error occurs setting up the session. |
shutdown | public void shutdown()(Code) | | |
startup | public void startup(Config appConfig) throws ApplicationException(Code) | | |
toHtml | public String toHtml()(Code) | | This is an optional function, used only by the Multiserver's graphical
administration. This bit of HTML appears in the status page for this
application. You could add extra status info, for example
a list of currently logged in users.
HTML that is displayed in the status page of the Multiserver. |
|
|