Uses of Interface
org.eclipse.jetty.server.Handler
-
Packages that use Handler Package Description org.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.jmx Jetty Server : Server JMX Integrationorg.eclipse.jetty.server.session Jetty Server : Session Management Implementations -
-
Uses of Handler in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement Handler Modifier and Type Class Description class
Server
Jetty HTTP Servlet Server.Methods in org.eclipse.jetty.server with type parameters of type Handler Modifier and Type Method Description <T extends Handler>
THandlerContainer. getChildHandlerByClass(java.lang.Class<T> byclass)
Methods in org.eclipse.jetty.server that return Handler Modifier and Type Method Description Handler[]
HandlerContainer. getChildHandlers()
Handler[]
HandlerContainer. getChildHandlersByClass(java.lang.Class<?> byclass)
Handler[]
HandlerContainer. getHandlers()
-
Uses of Handler in org.eclipse.jetty.server.handler
Classes in org.eclipse.jetty.server.handler that implement Handler Modifier and Type Class Description class
AbstractHandler
AbstractHandler.static class
AbstractHandler.ErrorDispatchHandler
Deprecated.This class is no longer required as ERROR dispatch is only done if there is an error page target.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
DefaultHandler
Default Handler.class
ErrorHandler
Handler for Error pages An ErrorHandler is registered withContextHandler.setErrorHandler(ErrorHandler)
orServer.setErrorHandler(ErrorHandler)
.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
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
SecuredRedirectHandler
Secured Redirect Handlerclass
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 protectionFields in org.eclipse.jetty.server.handler declared as Handler Modifier and Type Field Description protected Handler
HandlerWrapper. _handler
Methods in org.eclipse.jetty.server.handler with type parameters of type Handler Modifier and Type Method Description <T extends Handler>
TAbstractHandlerContainer. getChildHandlerByClass(java.lang.Class<T> byclass)
Methods in org.eclipse.jetty.server.handler that return Handler Modifier and Type Method Description Handler[]
AbstractHandlerContainer. getChildHandlers()
Handler[]
AbstractHandlerContainer. getChildHandlersByClass(java.lang.Class<?> byclass)
Handler
HandlerWrapper. getHandler()
Handler
HotSwapHandler. getHandler()
Handler[]
HandlerCollection. getHandlers()
Handler[]
HandlerCollection.Handlers. getHandlers()
Handler[]
HandlerWrapper. getHandlers()
Handler[]
HotSwapHandler. getHandlers()
Methods in org.eclipse.jetty.server.handler with parameters of type Handler Modifier and Type Method Description void
HandlerCollection. addHandler(Handler handler)
Adds a handler.void
ContextHandlerCollection. deployHandler(Handler handler, org.eclipse.jetty.util.Callback callback)
Thread safe deploy of a Handler.protected void
AbstractHandlerContainer. expandHandler(Handler handler, java.util.List<Handler> list, java.lang.Class<?> byClass)
static <T extends HandlerContainer>
TAbstractHandlerContainer. findContainerOf(HandlerContainer root, java.lang.Class<T> type, Handler handler)
protected HandlerCollection.Handlers
ContextHandlerCollection. newHandlers(Handler[] handlers)
protected HandlerCollection.Handlers
HandlerCollection. newHandlers(Handler[] handlers)
void
HandlerCollection. prependHandler(Handler handler)
Prepends a handler.void
HandlerCollection. removeHandler(Handler handler)
void
HandlerWrapper. setHandler(Handler handler)
void
HotSwapHandler. setHandler(Handler handler)
void
HandlerCollection. setHandlers(Handler[] handlers)
void
ContextHandlerCollection. undeployHandler(Handler handler, org.eclipse.jetty.util.Callback callback)
Thread safe undeploy of a Handler.Method parameters in org.eclipse.jetty.server.handler with type arguments of type Handler Modifier and Type Method Description protected void
AbstractHandlerContainer. expandChildren(java.util.List<Handler> list, java.lang.Class<?> byClass)
protected void
HandlerCollection. expandChildren(java.util.List<Handler> list, java.lang.Class<?> byClass)
protected void
HandlerWrapper. expandChildren(java.util.List<Handler> list, java.lang.Class<?> byClass)
protected void
HotSwapHandler. expandChildren(java.util.List<Handler> list, java.lang.Class<?> byClass)
protected void
AbstractHandlerContainer. expandHandler(Handler handler, java.util.List<Handler> list, java.lang.Class<?> byClass)
Constructors in org.eclipse.jetty.server.handler with parameters of type Handler Constructor Description HandlerCollection(boolean mutableWhenRunning, Handler... handlers)
HandlerCollection(Handler... handlers)
HandlerList(Handler... handlers)
Handlers(Handler[] handlers)
-
Uses of Handler in org.eclipse.jetty.server.handler.gzip
Classes in org.eclipse.jetty.server.handler.gzip that implement Handler Modifier and Type Class Description class
GzipHandler
A Handler that can dynamically GZIP uncompress requests, and compress responses. -
Uses of Handler in org.eclipse.jetty.server.jmx
Methods in org.eclipse.jetty.server.jmx that return Handler Modifier and Type Method Description Handler[]
ServerMBean. getContexts()
-
Uses of Handler in org.eclipse.jetty.server.session
Classes in org.eclipse.jetty.server.session that implement Handler Modifier and Type Class Description class
SessionHandler
SessionHandler.
-