| java.lang.Object jwebapp.controller.WebAppController
WebAppController | public class WebAppController (Code) | | This is the main controller for jWebApp and should be called from any custom controllers.
|
Inner Class :static class UserSecurityException extends Exception | |
destroy | public void destroy()(Code) | | Handles servlet destruction for jWebApp and should be called within the HttpServlet.destroy() method.
This is only needed if the servlet has an InitDestroyHandler with a needed destroy method.
|
init | public void init(ServletConfig config) throws ServletException(Code) | | Handles servlet initialization for jWebApp and should be called within the HttpServlet.init() method.
Parameters: config - the servlet configuration instance |
processRequest | protected void processRequest(HttpServletRequest request, HttpServletResponse response)(Code) | | This is the main controller for jWebApp and all requests needing to be processed by jWebApp must call this method.
Parameters: request - the HttpServletRequest request Parameters: response - the HttpServletResponse response |
|
|