Uses of Class
javax.servlet.ServletException

Packages that use ServletException
javax.servlet   
javax.servlet.http   
winstone   
winstone.auth   
winstone.invoker   
 

Uses of ServletException in javax.servlet
 

Subclasses of ServletException in javax.servlet
 class UnavailableException
          Thrown if a servlet is permanently or temporarily unavailable
 

Methods in javax.servlet that throw ServletException
 void FilterChain.doFilter(ServletRequest request, ServletResponse response)
           
 void Filter.doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
           
 void RequestDispatcher.forward(ServletRequest request, ServletResponse response)
           
 Servlet ServletContext.getServlet(java.lang.String name)
          Deprecated. As of Java Servlet API 2.1, with no direct replacement.
 void RequestDispatcher.include(ServletRequest request, ServletResponse response)
           
 void GenericServlet.init()
           
 void Filter.init(FilterConfig filterConfig)
           
 void Servlet.init(ServletConfig config)
           
 void GenericServlet.init(ServletConfig config)
           
 void Servlet.service(ServletRequest req, ServletResponse res)
           
abstract  void GenericServlet.service(ServletRequest req, ServletResponse res)
           
 

Uses of ServletException in javax.servlet.http
 

Methods in javax.servlet.http that throw ServletException
protected  void HttpServlet.doDelete(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doGet(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doHead(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doOptions(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doPost(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doPut(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.doTrace(HttpServletRequest req, HttpServletResponse resp)
           
protected  void HttpServlet.service(HttpServletRequest request, HttpServletResponse response)
           
 void HttpServlet.service(ServletRequest request, ServletResponse response)
           
 

Uses of ServletException in winstone
 

Methods in winstone that throw ServletException
 void RequestDispatcher.doFilter(ServletRequest request, ServletResponse response)
          Handles the processing of the chain of filters, so that we process them all, then pass on to the main servlet
 void StaticResourceServlet.doGet(HttpServletRequest request, HttpServletResponse response)
           
 void StaticResourceServlet.doPost(HttpServletRequest request, HttpServletResponse response)
           
 void FilterConfiguration.execute(ServletRequest request, ServletResponse response, FilterChain chain)
           
 void ServletConfiguration.execute(ServletRequest request, ServletResponse response, java.lang.String requestURI)
           
 void RequestDispatcher.forward(ServletRequest request, ServletResponse response)
          Forwards to another servlet, and when it's finished executing that other servlet, cut off execution.
 Filter FilterConfiguration.getFilter()
          Implements the first-time-init of an instance, and wraps it in a dispatcher.
 void RequestDispatcher.include(ServletRequest request, ServletResponse response)
          Includes the execution of a servlet into the current request Note this method enters itself twice: once with the initial call, and once again when all the filters have completed.
 void StaticResourceServlet.init(ServletConfig config)
           
 boolean AuthenticationHandler.processAuthentication(ServletRequest request, ServletResponse response, java.lang.String pathRequested)
          Evaluates any authentication constraints, intercepting if auth is required.
 void ErrorServlet.service(ServletRequest request, ServletResponse response)
           
 

Uses of ServletException in winstone.auth
 

Methods in winstone.auth that throw ServletException
protected  boolean BaseAuthenticationHandler.doRoleCheck(HttpServletRequest request, HttpServletResponse response, java.lang.String pathRequested)
           
 boolean FormAuthenticationHandler.processAuthentication(ServletRequest request, ServletResponse response, java.lang.String pathRequested)
          Evaluates any authentication constraints, intercepting if auth is required.
 boolean BaseAuthenticationHandler.processAuthentication(ServletRequest inRequest, ServletResponse inResponse, java.lang.String pathRequested)
          Evaluates any authentication constraints, intercepting if auth is required.
protected  void FormAuthenticationHandler.requestAuthentication(HttpServletRequest request, HttpServletResponse response, java.lang.String pathRequested)
          Call this once we know that we need to authenticate
protected abstract  void BaseAuthenticationHandler.requestAuthentication(HttpServletRequest request, HttpServletResponse response, java.lang.String pathRequested)
          The actual auth request implementation.
protected  boolean FormAuthenticationHandler.validatePossibleAuthenticationResponse(HttpServletRequest request, HttpServletResponse response, java.lang.String pathRequested)
          Check the response - is it a response to the login page ?
protected abstract  boolean BaseAuthenticationHandler.validatePossibleAuthenticationResponse(HttpServletRequest request, HttpServletResponse response, java.lang.String pathRequested)
          Handling the (possible) response
 

Uses of ServletException in winstone.invoker
 

Methods in winstone.invoker that throw ServletException
protected  void InvokerServlet.doGet(HttpServletRequest req, HttpServletResponse rsp)
           
protected  void InvokerServlet.doPost(HttpServletRequest req, HttpServletResponse rsp)
           
 void InvokerServlet.init(ServletConfig config)
          Set up a blank map of servlet configuration instances
 



Copyright © 2013. All Rights Reserved.