Uses of Class
javax.servlet.ServletException

Packages that use ServletException
javax.servlet The javax.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container. 
javax.servlet.http The javax.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container. 
org.eclipse.jetty.annotations   
org.eclipse.jetty.continuation   
org.eclipse.jetty.plus.annotation   
org.eclipse.jetty.plus.webapp   
org.eclipse.jetty.rewrite.handler   
org.eclipse.jetty.security   
org.eclipse.jetty.server   
org.eclipse.jetty.server.handler   
org.eclipse.jetty.server.session   
org.eclipse.jetty.servlet   
org.eclipse.jetty.webapp   
org.eclipse.jetty.websocket   
 

Uses of ServletException in javax.servlet
 

Subclasses of ServletException in javax.servlet
 class UnavailableException
          Defines an exception that a servlet or filter throws to indicate that it is permanently or temporarily unavailable.
 

Methods in javax.servlet that throw ServletException
 void FilterChain.doFilter(ServletRequest request, ServletResponse response)
          Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.
 void Filter.doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
          The doFilter method of the Filter is called by the container each time a request/response pair is passed through the chain due to a client request for a resource at the end of the chain.
 void RequestDispatcher.forward(ServletRequest request, ServletResponse response)
          Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) on the server.
 Servlet ServletContext.getServlet(String name)
          Deprecated. As of Java Servlet API 2.1, with no direct replacement.

This method was originally defined to retrieve a servlet from a ServletContext. In this version, this method always returns null and remains only to preserve binary compatibility. This method will be permanently removed in a future version of the Java Servlet API.

In lieu of this method, servlets can share information using the ServletContext class and can perform shared business logic by invoking methods on common non-servlet classes.

 void RequestDispatcher.include(ServletRequest request, ServletResponse response)
          Includes the content of a resource (servlet, JSP page, HTML file) in the response.
 void GenericServlet.init()
          A convenience method which can be overridden so that there's no need to call super.init(config).
 void Filter.init(FilterConfig filterConfig)
          Called by the web container to indicate to a filter that it is being placed into service.
 void Servlet.init(ServletConfig config)
          Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
 void GenericServlet.init(ServletConfig config)
          Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
 void Servlet.service(ServletRequest req, ServletResponse res)
          Called by the servlet container to allow the servlet to respond to a request.
abstract  void GenericServlet.service(ServletRequest req, ServletResponse res)
          Called by the servlet container to allow the servlet to respond to a request.
 

Uses of ServletException in javax.servlet.http
 

Methods in javax.servlet.http that throw ServletException
protected  void HttpServlet.doDelete(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a DELETE request.
protected  void HttpServlet.doGet(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a GET request.
protected  void HttpServlet.doHead(HttpServletRequest req, HttpServletResponse resp)
          Receives an HTTP HEAD request from the protected service method and handles the request.
protected  void HttpServlet.doOptions(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a OPTIONS request.
protected  void HttpServlet.doPost(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a POST request.
protected  void HttpServlet.doPut(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a PUT request.
protected  void HttpServlet.doTrace(HttpServletRequest req, HttpServletResponse resp)
          Called by the server (via the service method) to allow a servlet to handle a TRACE request.
protected  void HttpServlet.service(HttpServletRequest req, HttpServletResponse resp)
          Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class.
 void HttpServlet.service(ServletRequest req, ServletResponse res)
          Dispatches client requests to the protected service method.
 

Uses of ServletException in org.eclipse.jetty.annotations
 

Methods in org.eclipse.jetty.annotations that throw ServletException
 void AnnotationDecorator.decorateFilterHolder(FilterHolder filter)
           
<T extends Filter>
T
AnnotationDecorator.decorateFilterInstance(T filter)
           
<T extends EventListener>
T
AnnotationDecorator.decorateListenerInstance(T listener)
           
 void AnnotationDecorator.decorateServletHolder(ServletHolder servlet)
           
<T extends Servlet>
T
AnnotationDecorator.decorateServletInstance(T servlet)
           
 

Uses of ServletException in org.eclipse.jetty.continuation
 

Methods in org.eclipse.jetty.continuation that throw ServletException
 void ContinuationFilter.doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
           
 void ContinuationFilter.init(FilterConfig filterConfig)
           
 

Uses of ServletException in org.eclipse.jetty.plus.annotation
 

Methods in org.eclipse.jetty.plus.annotation that throw ServletException
 RunAs RunAsCollection.getRunAs(Object o)
           
 void RunAsCollection.setRunAs(Object o)
           
 void RunAs.setRunAs(ServletHolder holder)
           
 

Uses of ServletException in org.eclipse.jetty.plus.webapp
 

Methods in org.eclipse.jetty.plus.webapp that throw ServletException
protected  void PlusDecorator.decorate(Object o)
           
 void PlusDecorator.decorateFilterHolder(FilterHolder filter)
           
<T extends Filter>
T
PlusDecorator.decorateFilterInstance(T filter)
           
<T extends EventListener>
T
PlusDecorator.decorateListenerInstance(T listener)
           
 void PlusDecorator.decorateServletHolder(ServletHolder holder)
           
<T extends Servlet>
T
PlusDecorator.decorateServletInstance(T servlet)
           
 

Uses of ServletException in org.eclipse.jetty.rewrite.handler
 

Methods in org.eclipse.jetty.rewrite.handler that throw ServletException
 void RewriteHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.security
 

Methods in org.eclipse.jetty.security that throw ServletException
 void SecurityHandler.handle(String pathInContext, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.server
 

Methods in org.eclipse.jetty.server that throw ServletException
 void Dispatcher.error(ServletRequest request, ServletResponse response)
           
 void Dispatcher.forward(ServletRequest request, ServletResponse response)
           
protected  void Dispatcher.forward(ServletRequest request, ServletResponse response, DispatcherType dispatch)
           
 void Server.handle(HttpConnection connection)
           
 void Handler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
          Handle a request.
 void Server.handleAsync(HttpConnection connection)
           
 void Dispatcher.include(ServletRequest request, ServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.server.handler
 

Methods in org.eclipse.jetty.server.handler that throw ServletException
 boolean ContextHandler.checkContext(String target, Request baseRequest, HttpServletResponse response)
           
abstract  void ScopedHandler.doHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ContextHandler.doHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
abstract  void ScopedHandler.doScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ContextHandler.doScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 Servlet ContextHandler.Context.getServlet(String name)
           
 void StatisticsHandler.handle(String path, Request request, HttpServletRequest httpRequest, HttpServletResponse httpResponse)
           
 void ScopedHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ResourceHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void RequestLogHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void IPAccessHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
          Checks the incoming request against the whitelist and blacklist
 void HotSwapHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void HandlerWrapper.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void HandlerList.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void HandlerCollection.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void DefaultHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void DebugHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ContextHandlerCollection.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ConnectHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
protected  boolean ConnectHandler.handleAuthentication(HttpServletRequest request, HttpServletResponse response, String address)
          Handles the authentication before setting up the tunnel to the remote server.
protected  void ConnectHandler.handleConnect(Request baseRequest, HttpServletRequest request, HttpServletResponse response, String serverAddress)
          Handles a CONNECT request.
 void ScopedHandler.nextHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void ScopedHandler.nextScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.server.session
 

Methods in org.eclipse.jetty.server.session that throw ServletException
 void SessionHandler.doHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void SessionHandler.doScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.servlet
 

Methods in org.eclipse.jetty.servlet that throw ServletException
<T extends Filter>
T
ServletContextHandler.Context.createFilter(Class<T> c)
           
<T extends EventListener>
T
ServletContextHandler.Context.createListener(Class<T> clazz)
           
<T extends Servlet>
T
ServletContextHandler.Context.createServlet(Class<T> c)
           
 void ServletContextHandler.Decorator.decorateFilterHolder(FilterHolder filter)
           
<T extends Filter>
T
ServletContextHandler.Decorator.decorateFilterInstance(T filter)
           
<T extends EventListener>
T
ServletContextHandler.Decorator.decorateListenerInstance(T listener)
           
 void ServletContextHandler.Decorator.decorateServletHolder(ServletHolder servlet)
           
<T extends Servlet>
T
ServletContextHandler.Decorator.decorateServletInstance(T servlet)
           
protected  void StatisticsServlet.doGet(HttpServletRequest req, HttpServletResponse resp)
           
protected  void NoJspServlet.doGet(HttpServletRequest req, HttpServletResponse response)
           
protected  void DefaultServlet.doGet(HttpServletRequest request, HttpServletResponse response)
           
 void ServletHandler.doHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
protected  void DefaultServlet.doOptions(HttpServletRequest req, HttpServletResponse resp)
           
 void StatisticsServlet.doPost(HttpServletRequest sreq, HttpServletResponse sres)
           
protected  void DefaultServlet.doPost(HttpServletRequest request, HttpServletResponse response)
           
 void ServletHandler.doScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
protected  void DefaultServlet.doTrace(HttpServletRequest req, HttpServletResponse resp)
           
 Servlet ServletHolder.getServlet()
          Get the servlet.
 void ServletHolder.handle(Request baseRequest, ServletRequest request, ServletResponse response)
          Service a request with this servlet.
 void StatisticsServlet.init()
           
protected  Servlet ServletHolder.newInstance()
           
protected  void Invoker.service(HttpServletRequest request, HttpServletResponse response)
           
 

Uses of ServletException in org.eclipse.jetty.webapp
 

Methods in org.eclipse.jetty.webapp that throw ServletException
protected  EventListener StandardDescriptorProcessor.newListenerInstance(WebAppContext context, Class<? extends EventListener> clazz)
           
 

Uses of ServletException in org.eclipse.jetty.websocket
 

Methods in org.eclipse.jetty.websocket that throw ServletException
 void WebSocketHandler.handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void WebSocketServlet.init()
           
protected  void WebSocketServlet.service(HttpServletRequest request, HttpServletResponse response)
           
 



Copyright © 1995-2010 Mort Bay Consulting. All Rights Reserved.