Uses of Interface
org.eclipse.jetty.client.ProtocolHandler
-
Packages that use ProtocolHandler Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client. -
-
Uses of ProtocolHandler in org.eclipse.jetty.client
Classes in org.eclipse.jetty.client that implement ProtocolHandler Modifier and Type Class Description class
AuthenticationProtocolHandler
class
ContinueProtocolHandler
A protocol handler that handles the 100 response code.class
ProxyAuthenticationProtocolHandler
A protocol handler that handles the 401 response code in association with theProxy-Authenticate
header.class
RedirectProtocolHandler
A protocol handler that handles redirect status codes 301, 302, 303, 307 and 308.class
WWWAuthenticationProtocolHandler
A protocol handler that handles the 401 response code in association with theWWW-Authenticate
header.Methods in org.eclipse.jetty.client that return ProtocolHandler Modifier and Type Method Description ProtocolHandler
ProtocolHandlers. find(Request request, Response response)
Finds the first protocol handler thataccepts
the given request and response.protected ProtocolHandler
HttpClient. findProtocolHandler(Request request, Response response)
ProtocolHandler
ProtocolHandlers. put(ProtocolHandler protocolHandler)
Stores the givenprotocolHandler
in this container.ProtocolHandler
ProtocolHandlers. remove(java.lang.String name)
Removes the protocol handler with the given name.Methods in org.eclipse.jetty.client with parameters of type ProtocolHandler Modifier and Type Method Description ProtocolHandler
ProtocolHandlers. put(ProtocolHandler protocolHandler)
Stores the givenprotocolHandler
in this container.
-