Uses of Interface
org.eclipse.jetty.server.HttpConfiguration.Customizer
Packages that use HttpConfiguration.Customizer
Package
Description
Jetty Server : Core Server API
-
Uses of HttpConfiguration.Customizer in org.eclipse.jetty.http2.server
Classes in org.eclipse.jetty.http2.server that implement HttpConfiguration.CustomizerModifier and TypeClassDescriptionclass
AHttpConfiguration.Customizer
that synthesizes the authority when theHttpHeader.C_AUTHORITY
header is missing. -
Uses of HttpConfiguration.Customizer in org.eclipse.jetty.rewrite
Classes in org.eclipse.jetty.rewrite that implement HttpConfiguration.CustomizerModifier and TypeClassDescriptionclass
ARuleContainer
that is anHttpConfiguration.Customizer
, so that its rules are processed at request customization time. -
Uses of HttpConfiguration.Customizer in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement HttpConfiguration.CustomizerModifier and TypeClassDescriptionclass
Customize Requests for Proxy Forwarding.class
Adds a missingHost
header (for example, HTTP 1.0 or 2.0 requests).class
Customizer that extracts the real local and remote address:port pairs from aProxyConnectionFactory
and sets them on the request withAttributes.setAttribute(String, Object)
.class
Customizer that extracts the attribute of anSSLContext
and makes them available viaAttributes.getAttribute(String)
using the names:EndPoint.SslSessionData.ATTRIBUTE
forEndPoint.SslSessionData
SecureRequestCustomizer.X509_ATTRIBUTE
for the local certificate as aX509
instanceMethods in org.eclipse.jetty.server that return types with arguments of type HttpConfiguration.CustomizerMethods in org.eclipse.jetty.server with parameters of type HttpConfiguration.CustomizerModifier and TypeMethodDescriptionvoid
HttpConfiguration.addCustomizer
(HttpConfiguration.Customizer customizer) Adds aHttpConfiguration.Customizer
that is invoked for every request received.boolean
HttpConfiguration.removeCustomizer
(HttpConfiguration.Customizer customizer) Method parameters in org.eclipse.jetty.server with type arguments of type HttpConfiguration.CustomizerModifier and TypeMethodDescriptionvoid
HttpConfiguration.setCustomizers
(List<HttpConfiguration.Customizer> customizers) Sets theHttpConfiguration.Customizer
s that are invoked for every request received.