com.quadcap.app.qws |
Application logic to support the Quadcap Web Server Admin Tool application.
This is a pretty straightforward "Model 2" application, with a central
servlet dispatching to individual action classes, which perform application
logic and then forward to JSP pages for final display.
|
Java Source File Name | Type | Comment |
Action.java | Interface | Interface which each application logic function must implement. |
ActionList.java | Class | Implement the 'list' action, which sets the "applications" request
attribute to be a HashMap of 'context' -> 'application'. |
ActionLoad.java | Class | Application logic step to load a new web application. |
ActionReload.java | Class | Application logic step to reload an existing web application. |
ActionStop.java | Class | |
ActionUnload.java | Class | Application logic step to unload a running web application. |
WebAdminServlet.java | Class | The controller servlet for the Web Server Admin Tool application. |