All Classes and Interfaces
Class
Description
Partial implementation of
Request.Content.Deprecated.
Deprecated.
no replacement, use
Request.Content instead.A listener that is notified of content availability
Authentication represents a mechanism to authenticate requests for protected resources.Structure holding information about the
WWW-Authenticate (or Proxy-Authenticate) header.Authentication.Result holds the information needed to authenticate a Request via Authentication.Result.apply(org.eclipse.jetty.client.api.Request).A store for
Authentications and Authentication.Results.Implementation of the HTTP "Basic" authentication defined in RFC 2617.
Basic authentication result.
Implementation of
Response.Listener that buffers the content up to a maximum length
specified to the constructors.Deprecated.
use
ByteBufferRequestContent instead.A
Request.Content for ByteBuffers.Deprecated.
use
BytesRequestContent instead.A
Request.Content for byte arrays.Connection represent a connection to a Destination and allow applications to send
requests via Connection.send(Request, Response.CompleteListener).Client-side connection pool abstraction.
Factory for ConnectionPool instances.
Marks a connection as being usable for a maximum number of requests.
Marks a connection as supporting multiplexed requests.
ContentDecoder decodes content bytes of a response.Factory for
ContentDecoders; subclasses must implement ContentDecoder.Factory.newContentDecoder().Deprecated.
use
Request.Content instead, or ContentProvider.toRequestContent(ContentProvider)
to convert ContentProvider to Request.Content.Deprecated.
use
Request.Content insteadA specialized
Response that can hold a limited content in memory.A protocol handler that handles the 100 response code.
Deprecated.
use
AsyncRequestContent instead.Destination represents the triple made of the Destination.getScheme(), the Destination.getHost()
and the Destination.getPort().Implementation of the HTTP "Digest" authentication defined in RFC 2617.
A destination for those network transports that are duplex (e.g.
Deprecated.
use
FormRequestContent instead.A
Request.Content for form uploads with the
"application/x-www-form-urlencoded" content type.A
BufferingResponseListener that is also a Future, to allow applications
to block (indefinitely or for a timeout) until FutureResponseListener.onComplete(Result) is called,
or to abort the request/response conversation.ContentDecoder for the "gzip" encoding.Specialized
ContentDecoder.Factory for the "gzip" encoding.HttpClient provides an efficient, asynchronous, non-blocking implementation
to perform HTTP requests to a server through a simple API that offers also blocking semantic.
HttpClientTransport represents what transport implementations should provide
in order to plug-in a different transport for HttpClient.A
HttpClientTransport that can dynamically switch among different application protocols.HttpReceiver provides the abstract code to implement the various steps of the receive of HTTP responses.Utility class that handles HTTP redirects.
HttpSender abstracts the algorithm to send HTTP requests, so that subclasses only
implement the transport-specific code to send requests over the wire, implementing
HttpSender.sendHeaders(HttpExchange, ByteBuffer, boolean, Callback) and
HttpSender.sendContent(HttpExchange, ByteBuffer, boolean, Callback).HttpUpgrader prepares a HTTP request to upgrade from one protocol to another,
and implements the upgrade mechanism.
A factory for
HttpUpgraders.Deprecated.
use
InputStreamRequestContent insteadA
Request.Content that produces content from an InputStream.Implementation of
Response.Listener that produces an InputStream
that allows applications to read the response content.Deprecated.
use
MultiPartRequestContent instead.A
Request.Content for form uploads with the "multipart/form-data"
content type.A destination for those transports that are multiplex (e.g.
Class that groups the elements that uniquely identify a destination.
The representation of a network protocol.
Deprecated.
use
OutputStreamRequestContent insteadA
Request.Content that provides content asynchronously through an OutputStream
similar to AsyncRequestContent.Deprecated.
use
PathRequestContent instead.A
Request.Content for files using JDK 7's java.nio.file APIs.A protocol handler performs HTTP protocol operations on
behalf of the application, typically like a browser would.
A container for
ProtocolHandlers accessible from HttpClient.getProtocolHandlers().A HttpUpgrader that upgrades to a given protocol.
A protocol handler that handles the 401 response code
in association with the
Proxy-Authenticate header.The configuration of the forward proxy to use with
HttpClient.ClientConnectionFactory for the
PROXY protocol.
A ClientConnectionFactory for the PROXY protocol version 1.
PROXY protocol version 1 metadata holder to be used in conjunction
with
Request.tag(Object).A ClientConnectionFactory for the PROXY protocol version 2.
PROXY protocol version 2 metadata holder to be used in conjunction
with
Request.tag(Object).A
ConnectionPool that provides connections
randomly among the ones that are available.A protocol handler that handles redirect status codes 301, 302, 303, 307 and 308.
Request represents an HTTP request, and offers a fluent interface to customize
various attributes such as the path, the headers, the content, etc.Listener for the request begin event.
Listener for the request committed event.
A reactive model to produce request content, similar to
Flow.Publisher.A reactive model to consume request content, similar to
Flow.Subscriber.The link between a content producer and a content consumer.
Listener for the request content event.
Listener for the request failed event.
Listener for the request headers event.
Listener for all request events.
An empty implementation of
Request.ListenerListener for the request queued event.
Common, empty, super-interface for request listeners.
Listener for the request succeeded event.
Response represents an HTTP response and offers methods to retrieve status code, HTTP version
and headers.Asynchronous listener for the response content events.
Listener for the response begin event.
Listener for the request and response completed event.
Synchronous listener for the response content events.
Asynchronous listener for the response content events.
Listener for the response failure event.
Listener for a response header event.
Listener for the response headers event.
Listener for all response events.
An empty implementation of
Response.ListenerCommon, empty, super-interface for response listeners
Listener for the response succeeded event.
A
ConnectionPool that attempts to provide connections using a round-robin algorithm.Helper class for SOCKS5 proxying.
A SOCKS5 authentication method.
A factory for
Socks5.Authentications.The implementation of the
NO AUTH authentication method defined in
RFC 1928.The implementation of the
USERNAME/PASSWORD authentication method defined in
RFC 1929.Client-side proxy configuration for SOCKS5, defined by
RFC 1928.
Implementation of the SPNEGO (or "Negotiate") authentication defined in RFC 4559.
Deprecated.
use
StringRequestContent instead.A
Request.Content for strings.Implementations of this interface expose a lock object
via
Synchronizable.getLock() so that callers can synchronize
externally on that lock:Deprecated.
Do not use it, use
CyclicTimeouts instead.A protocol handler that handles HTTP 101 responses.
A connection pool that validates connections before
making them available for use.
A protocol handler that handles the 401 response code
in association with the
WWW-Authenticate header.
AbstractRequestContentinstead.