Uses of Interface
org.webbitserver.HttpHandler

Packages that use HttpHandler
org.webbitserver   
org.webbitserver.handler   
org.webbitserver.handler.authentication   
org.webbitserver.handler.logging   
org.webbitserver.netty   
 

Uses of HttpHandler in org.webbitserver
 

Methods in org.webbitserver with parameters of type HttpHandler
 WebServer WebServer.add(HttpHandler handler)
          Add an HttpHandler.
 WebServer WebServer.add(String path, HttpHandler handler)
          Add an HttpHandler that will only respond to a certain path (e.g "/some/page").
 

Uses of HttpHandler in org.webbitserver.handler
 

Classes in org.webbitserver.handler that implement HttpHandler
 class AbstractResourceHandler
           
 class AliasHandler
           
 class DateHeaderHandler
          Handler that sets the HTTP 'Server' response header.
 class DelayedHttpHandler
          Wraps a standard HttpHandler, and will introduce an artificial delay.
 class EmbeddedResourceHandler
           
 class HttpToEventSourceHandler
           
 class HttpToWebSocketHandler
           
 class NotFoundHttpHandler
           
 class PathMatchHandler
           
 class ServerHeaderHandler
          Handler that sets the HTTP 'Server' response header.
 class StaticFileHandler
           
 class StringHttpHandler
           
 

Constructors in org.webbitserver.handler with parameters of type HttpHandler
DelayedHttpHandler(Executor executor, long delayInMillis, HttpHandler handler)
           
PathMatchHandler(Pattern pathPattern, HttpHandler httpHandler)
           
PathMatchHandler(String path, HttpHandler httpHandler)
           
 

Uses of HttpHandler in org.webbitserver.handler.authentication
 

Classes in org.webbitserver.handler.authentication that implement HttpHandler
 class BasicAuthenticationHandler
          Adds HTTP Basic authentication to a page.
 

Uses of HttpHandler in org.webbitserver.handler.logging
 

Classes in org.webbitserver.handler.logging that implement HttpHandler
 class LoggingHandler
           
 

Uses of HttpHandler in org.webbitserver.netty
 

Methods in org.webbitserver.netty with parameters of type HttpHandler
 NettyWebServer NettyWebServer.add(HttpHandler handler)
           
 NettyWebServer NettyWebServer.add(String path, HttpHandler handler)
           
 

Constructor parameters in org.webbitserver.netty with type arguments of type HttpHandler
NettyHttpChannelHandler(Executor executor, List<HttpHandler> httpHandlers, Object id, long timestamp, Thread.UncaughtExceptionHandler exceptionHandler, Thread.UncaughtExceptionHandler ioExceptionHandler)
           
NettyHttpControl(Iterator<HttpHandler> handlerIterator, Executor executor, org.jboss.netty.channel.ChannelHandlerContext ctx, NettyHttpRequest webbitHttpRequest, NettyHttpResponse webbitHttpResponse, org.jboss.netty.handler.codec.http.HttpRequest nettyHttpRequest, org.jboss.netty.handler.codec.http.HttpResponse nettyHttpResponse, Thread.UncaughtExceptionHandler exceptionHandler, Thread.UncaughtExceptionHandler ioExceptionHandler)
           
 



Copyright © 2013. All Rights Reserved.