Uses of Interface
org.eclipse.jetty.server.HandlerContainer
-
Packages that use HandlerContainer Package Description org.eclipse.jetty.ant Jetty Ant : Ant Tasks and Configurationorg.eclipse.jetty.embedded org.eclipse.jetty.http.spi org.eclipse.jetty.maven.plugin Jetty Maven Plugin : Support for Jetty in Maven build lifecycleorg.eclipse.jetty.proxy Jetty Proxy : Async Proxy Supportorg.eclipse.jetty.quickstart org.eclipse.jetty.rewrite.handler Jetty Rewrite : Rewrite Handler and Rules for Jettyorg.eclipse.jetty.security Jetty Security : Modular Support for Security in Jettyorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.handler Jetty Server : Core Handler APIorg.eclipse.jetty.server.handler.gzip Jetty GZIP Handlerorg.eclipse.jetty.server.session Jetty Server : Session Management Implementationsorg.eclipse.jetty.servlet Jetty Server : Modular Servlet Integrationorg.eclipse.jetty.webapp Jetty Util : Modular Web Application Supportorg.eclipse.jetty.websocket.server Jetty WebSocket Server : Implementation [Internal Use Only] -
-
Uses of HandlerContainer in org.eclipse.jetty.ant
Classes in org.eclipse.jetty.ant that implement HandlerContainer Modifier and Type Class Description class
AntWebAppContext
Extension of WebAppContext to allow configuration via Ant environment.static class
AntWebAppContext.AntServletHandler
AntServletHandler -
Uses of HandlerContainer in org.eclipse.jetty.embedded
Classes in org.eclipse.jetty.embedded that implement HandlerContainer Modifier and Type Class Description static class
ManyHandlers.WelcomeWrapHandler
Add a request attribute, but produce no output. -
Uses of HandlerContainer in org.eclipse.jetty.http.spi
Classes in org.eclipse.jetty.http.spi that implement HandlerContainer Modifier and Type Class Description class
HttpSpiContextHandler
Jetty handler that bridges requests toHttpHandler
. -
Uses of HandlerContainer in org.eclipse.jetty.maven.plugin
Classes in org.eclipse.jetty.maven.plugin that implement HandlerContainer Modifier and Type Class Description class
JettyWebAppContext
JettyWebAppContext Extends the WebAppContext to specialize for the maven environment. -
Uses of HandlerContainer in org.eclipse.jetty.proxy
Classes in org.eclipse.jetty.proxy that implement HandlerContainer Modifier and Type Class Description class
ConnectHandler
Implementation of aHandler
that supports HTTP CONNECT. -
Uses of HandlerContainer in org.eclipse.jetty.quickstart
Classes in org.eclipse.jetty.quickstart that implement HandlerContainer Modifier and Type Class Description class
QuickStartWebApp
QuickStartWar -
Uses of HandlerContainer in org.eclipse.jetty.rewrite.handler
Classes in org.eclipse.jetty.rewrite.handler that implement HandlerContainer Modifier and Type Class Description class
RewriteHandler
Rewrite handler is responsible for managing the rules. -
Uses of HandlerContainer in org.eclipse.jetty.security
Classes in org.eclipse.jetty.security that implement HandlerContainer Modifier and Type Class Description class
ConstraintSecurityHandler
ConstraintSecurityHandlerclass
SecurityHandler
Abstract SecurityHandler. -
Uses of HandlerContainer in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement HandlerContainer Modifier and Type Class Description class
Server
Jetty HTTP Servlet Server. -
Uses of HandlerContainer in org.eclipse.jetty.server.handler
Classes in org.eclipse.jetty.server.handler that implement HandlerContainer Modifier and Type Class Description class
AbstractHandlerContainer
Abstract Handler Container.class
AsyncDelayHandler
A handler wrapper that provides the framework to asynchronously delay the handling of a request.class
BufferedResponseHandler
A Handler that can apply aHttpOutput.Interceptor
mechanism to buffer the entire response content until the output is closed.class
ContextHandler
ContextHandler.class
ContextHandlerCollection
ThisHandlerCollection
is creates a Map of contexts to it's contained handlers based on the context path and virtual hosts of any containedContextHandler
s.class
DebugHandler
Deprecated.UseDebugListener
class
FileBufferedResponseHandler
A Handler that can apply aHttpOutput.Interceptor
mechanism to buffer the entire response content until the output is closed.class
HandlerCollection
A collection of handlers.class
HandlerList
HandlerList.class
HandlerWrapper
AHandlerWrapper
acts as aHandler
but delegates thehandle
method andlife cycle
events to a delegate.class
HotSwapHandler
AHandlerContainer
that allows a hot swap of a wrapped handler.class
IdleTimeoutHandler
Handler to adjust the idle timeout of requests while dispatched.class
InetAccessHandler
InetAddress Access Handlerclass
IPAccessHandler
Deprecated.Use @InetAccessHandler
.class
MovedContextHandler
Moved ContextHandler.class
RequestLogHandler
This handler provides an alternate way (other thanServer.setRequestLog(RequestLog)
) to log request, that can be applied to a particular handler (eg context).class
ResourceHandler
Resource Handler.class
ScopedHandler
ScopedHandler.class
ShutdownHandler
A handler that shuts the server down on a valid request.class
SizeLimitHandler
A handler that can limit the size of message bodies in requests and responses.class
StatisticsHandler
class
ThreadLimitHandler
Handler to limit the threads per IP address for DOS protectionMethods in org.eclipse.jetty.server.handler with type parameters of type HandlerContainer Modifier and Type Method Description static <T extends HandlerContainer>
TAbstractHandlerContainer. findContainerOf(HandlerContainer root, java.lang.Class<T> type, Handler handler)
Methods in org.eclipse.jetty.server.handler with parameters of type HandlerContainer Modifier and Type Method Description static <T extends HandlerContainer>
TAbstractHandlerContainer. findContainerOf(HandlerContainer root, java.lang.Class<T> type, Handler handler)
Constructors in org.eclipse.jetty.server.handler with parameters of type HandlerContainer Constructor Description ContextHandler(HandlerContainer parent, java.lang.String contextPath)
MovedContextHandler(HandlerContainer parent, java.lang.String contextPath, java.lang.String newContextURL)
-
Uses of HandlerContainer in org.eclipse.jetty.server.handler.gzip
Classes in org.eclipse.jetty.server.handler.gzip that implement HandlerContainer Modifier and Type Class Description class
GzipHandler
A Handler that can dynamically GZIP uncompress requests, and compress responses. -
Uses of HandlerContainer in org.eclipse.jetty.server.session
Classes in org.eclipse.jetty.server.session that implement HandlerContainer Modifier and Type Class Description class
SessionHandler
SessionHandler. -
Uses of HandlerContainer in org.eclipse.jetty.servlet
Classes in org.eclipse.jetty.servlet that implement HandlerContainer Modifier and Type Class Description class
ServletContextHandler
Servlet Context.class
ServletHandler
Servlet HttpHandler.Constructors in org.eclipse.jetty.servlet with parameters of type HandlerContainer Constructor Description ServletContextHandler(HandlerContainer parent, java.lang.String contextPath)
ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, boolean sessions, boolean security)
ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, int options)
ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler, int options)
ServletContextHandler(HandlerContainer parent, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
-
Uses of HandlerContainer in org.eclipse.jetty.webapp
Classes in org.eclipse.jetty.webapp that implement HandlerContainer Modifier and Type Class Description class
WebAppContext
Web Application Context Handler.Constructors in org.eclipse.jetty.webapp with parameters of type HandlerContainer Constructor Description WebAppContext(HandlerContainer parent, java.lang.String webApp, java.lang.String contextPath)
WebAppContext(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler, int options)
This constructor is used in the geronimo integration.WebAppContext(HandlerContainer parent, Resource webApp, java.lang.String contextPath)
-
Uses of HandlerContainer in org.eclipse.jetty.websocket.server
Classes in org.eclipse.jetty.websocket.server that implement HandlerContainer Modifier and Type Class Description class
WebSocketHandler
static class
WebSocketHandler.Simple
Create a simple WebSocketHandler that registers a single WebSocket POJO that is created on every upgrade request.class
WebSocketUpgradeHandlerWrapper
-