Uses of Interface
org.eclipse.jetty.server.Handler.Singleton
Package
Description
Jetty Server : Modular Servlet Integration
Jetty Util : Modular Web Application Support
Jetty Rewrite : Rewrite Handler and Rules for Jetty
Jetty Security : Modular Support for Security in Jetty
Jetty Server : Core Server API
Jetty Server : Core Handler API
Jetty GZIP Handler
Jetty Server : Session Management Implementations
-
Uses of Handler.Singleton in org.eclipse.jetty.ee10.servlet
Modifier and TypeClassDescriptionclass
Handler to eagerly and asynchronously read and parseMimeTypes.Type.FORM_ENCODED
andMimeTypes.Type.MULTIPART_FORM_DATA
content prior to invoking theServletHandler
, which can then consume them with blocking APIs but without blocking.class
Servlet Context.class
Servlet HttpHandler.class
Modifier and TypeMethodDescriptionvoid
ServletContextHandler.insertHandler
(Handler.Singleton handler) Insert a HandlerWrapper before the first Session, Security or ServletHandler but after any other HandlerWrappers. -
Uses of Handler.Singleton in org.eclipse.jetty.ee10.servlet.security
-
Uses of Handler.Singleton in org.eclipse.jetty.ee10.webapp
-
Uses of Handler.Singleton in org.eclipse.jetty.http.spi
-
Uses of Handler.Singleton in org.eclipse.jetty.rewrite.handler
Modifier and TypeClassDescriptionclass
RewriteHandler
rewrites incoming requests through a set ofRule
s. -
Uses of Handler.Singleton in org.eclipse.jetty.security
Modifier and TypeClassDescriptionclass
Abstract SecurityHandler.static class
A concrete implementation ofSecurityHandler
that uses aPathMappings
to match request to a list ofConstraint
s, which are applied in the order of least significant to most significant. -
Uses of Handler.Singleton in org.eclipse.jetty.server
Modifier and TypeClassDescriptionstatic class
An implementation ofHandler.Singleton
, which is aHandler.Container
that wraps one single otherHandler
.class
class
AHandler
that can limit the size of message bodies in requests and responses.Modifier and TypeMethodDescriptionstatic Handler
Handler.Singleton.checkHandler
(Handler.Singleton singleton, Handler handler) Utility method to perform sanity checks on a {Handler
to be added to the givenSingleton
.default void
Handler.Singleton.insertHandler
(Handler.Singleton handler) Inserts the givenHandler
(and possible chain ofHandler
s) between thisHandler
and its currentchild
.static Handler
Handler.Singleton.updateHandler
(Handler.Singleton singleton, Handler handler) Utility method to perform sanity checks before updating the givenHandler
to the givenSingleton
, typically used in implementations ofsetHandler(Handler)
. -
Uses of Handler.Singleton in org.eclipse.jetty.server.handler
Modifier and TypeClassDescriptionclass
A Handler that can apply a mechanism to buffer the entire response content until the output is closed.class
AHandler.Wrapper
that conditionally handles aRequest
.static class
An AbstractConditionalHandler
.static class
An implementation ofConditionalHandler
that, if conditions are met, will not do any further handling by returningfalse
fromConditionalHandler.DontHandle.onConditionsMet(Request, Response, Callback)
.static class
An abstract implementation ofConditionalHandler
that, if conditions are not met, will call theConditionalHandler.nextHandler(Request, Response, Callback)
fromConditionalHandler.ElseNext.onConditionsNotMet(Request, Response, Callback)
.static class
An implementation ofConditionalHandler
that, if conditions are met, will reject the request by sending a response (by default aHttpStatus.FORBIDDEN_403
).static class
An implementation ofConditionalHandler
that, if conditions are met, will skip the nextHandler
by invoking itsnext Handler
.class
Implementation of aHandler
that supports HTTP CONNECT.class
class
Implementation of the CORS protocol defined by the fetch standard.class
Debug Handler.class
class
AHandler.Wrapper
that fires events during the processing of the requests.class
Handler to track active requests and allow them to gracefully complete.class
AHandlerContainer
that allows a hot swap of a wrapped handler.class
Handler to adjust the idle timeout of requests while dispatched.class
InetAddress Access Handlerclass
AHandler
that helps recording the total latency of the requests executed by the wrapped handler.class
AContextHandler
with a childHandler
that redirects to a configurable URI.class
A quality of serviceHandler
thatconditionally
limits the number of concurrent requests, to provide more predictable end-user experience in case descendantHandler
s have limited capacity.class
Resource Handler will serve static content and handle If-Modified-Since headers.static class
Utility class to create a ContextHandler containing a ResourceHandler.class
Forces a redirect to the secure form of the resource before allowed to access the resource.class
AHandler
that initiates a Shutdown of the Jetty Server it belongs to.class
A troubleshootingHandler.Wrapper
that tracks whetherHandler
/Request
/Response
asynchronous APIs are properly used by applications.class
static class
Checks that the wrapped handler can read/write at a minimal rate of N bytes per second.class
Handler to limit the threads per IP address for DOS protectionclass
Inspired by nginx'stry_files
functionality. -
Uses of Handler.Singleton in org.eclipse.jetty.server.handler.gzip
-
Uses of Handler.Singleton in org.eclipse.jetty.session
-
Uses of Handler.Singleton in org.eclipse.jetty.websocket.core.server
-
Uses of Handler.Singleton in org.eclipse.jetty.websocket.server
Modifier and TypeClassDescriptionclass
AHandler
that may perform the upgrade from HTTP to WebSocket.