Uses of Interface
org.eclipse.jetty.server.HttpConfiguration.Customizer
-
Packages that use HttpConfiguration.Customizer Package Description org.eclipse.jetty.rewrite org.eclipse.jetty.server Jetty Server : Core Server API -
-
Uses of HttpConfiguration.Customizer in org.eclipse.jetty.rewrite
Classes in org.eclipse.jetty.rewrite that implement HttpConfiguration.Customizer Modifier and Type Class Description class
RewriteCustomizer
-
Uses of HttpConfiguration.Customizer in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement HttpConfiguration.Customizer Modifier and Type Class Description class
ForwardedRequestCustomizer
Customize Requests for Proxy Forwarding.class
HostHeaderCustomizer
Customizes requests that lack theHost
header (for example, HTTP 1.0 requests).class
ProxyCustomizer
Customizer that extracts the real local and remote address:port pairs from aProxyConnectionFactory
and sets them on the request withServletRequest.setAttribute(String, Object)
.class
SecureRequestCustomizer
Customizer that extracts the attribute from anSSLContext
and sets them on the request withServletRequest.setAttribute(String, Object)
according to Servlet Specification Requirements.Methods in org.eclipse.jetty.server that return types with arguments of type HttpConfiguration.Customizer Modifier and Type Method Description java.util.List<HttpConfiguration.Customizer>
HttpConfiguration. getCustomizers()
Methods in org.eclipse.jetty.server with parameters of type HttpConfiguration.Customizer Modifier and Type Method Description void
HttpConfiguration. addCustomizer(HttpConfiguration.Customizer customizer)
Adds aHttpConfiguration.Customizer
that is invoked for every request received.Method parameters in org.eclipse.jetty.server with type arguments of type HttpConfiguration.Customizer Modifier and Type Method Description void
HttpConfiguration. setCustomizers(java.util.List<HttpConfiguration.Customizer> customizers)
Sets theHttpConfiguration.Customizer
s that are invoked for every request received.
-