Uses of Class
org.eclipse.jetty.client.HttpClient
-
Packages that use HttpClient 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.org.eclipse.jetty.client.http org.eclipse.jetty.fcgi.client.http org.eclipse.jetty.fcgi.server.proxy org.eclipse.jetty.http2.client.http org.eclipse.jetty.proxy Jetty Proxy : Async Proxy Supportorg.eclipse.jetty.security.openid org.eclipse.jetty.unixsocket.client org.eclipse.jetty.websocket.client Jetty WebSocket Client APIorg.eclipse.jetty.websocket.jsr356 org.eclipse.jetty.websocket.jsr356.server -
-
Uses of HttpClient in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return HttpClient Modifier and Type Method Description protected HttpClient
AbstractHttpClientTransport. getHttpClient()
protected HttpClient
AuthenticationProtocolHandler. getHttpClient()
HttpClient
HttpConnection. getHttpClient()
HttpClient
HttpDestination. getHttpClient()
Methods in org.eclipse.jetty.client with parameters of type HttpClient Modifier and Type Method Description protected void
AbstractConnectorHttpClientTransport. configure(HttpClient client, java.nio.channels.SocketChannel channel)
protected ConnectionPool
HttpDestination. newConnectionPool(HttpClient client)
protected java.util.Queue<HttpExchange>
HttpDestination. newExchangeQueue(HttpClient client)
protected SelectorManager
AbstractConnectorHttpClientTransport. newSelectorManager(HttpClient client)
void
AbstractHttpClientTransport. setHttpClient(HttpClient client)
void
HttpClientTransport. setHttpClient(HttpClient client)
Sets theHttpClient
instance on this transport.Constructors in org.eclipse.jetty.client with parameters of type HttpClient Constructor Description AuthenticationProtocolHandler(HttpClient client, int maxContentLength)
ClientSelectorManager(HttpClient client, int selectors)
HttpDestination(HttpClient client, Origin origin)
HttpRedirector(HttpClient client)
HttpRequest(HttpClient client, HttpConversation conversation, java.net.URI uri)
MultiplexHttpDestination(HttpClient client, Origin origin)
PoolingHttpDestination(HttpClient client, Origin origin)
ProxyAuthenticationProtocolHandler(HttpClient client)
ProxyAuthenticationProtocolHandler(HttpClient client, int maxContentLength)
RedirectProtocolHandler(HttpClient client)
RequestNotifier(HttpClient client)
WWWAuthenticationProtocolHandler(HttpClient client)
WWWAuthenticationProtocolHandler(HttpClient client, int maxContentLength)
-
Uses of HttpClient in org.eclipse.jetty.client.http
Constructors in org.eclipse.jetty.client.http with parameters of type HttpClient Constructor Description HttpDestinationOverHTTP(HttpClient client, Origin origin)
-
Uses of HttpClient in org.eclipse.jetty.fcgi.client.http
Constructors in org.eclipse.jetty.fcgi.client.http with parameters of type HttpClient Constructor Description HttpDestinationOverFCGI(HttpClient client, Origin origin)
MultiplexHttpDestinationOverFCGI(HttpClient client, Origin origin)
-
Uses of HttpClient in org.eclipse.jetty.fcgi.server.proxy
Methods in org.eclipse.jetty.fcgi.server.proxy that return HttpClient Modifier and Type Method Description protected HttpClient
FastCGIProxyServlet. newHttpClient()
-
Uses of HttpClient in org.eclipse.jetty.http2.client.http
Constructors in org.eclipse.jetty.http2.client.http with parameters of type HttpClient Constructor Description HttpDestinationOverHTTP2(HttpClient client, Origin origin)
-
Uses of HttpClient in org.eclipse.jetty.proxy
Methods in org.eclipse.jetty.proxy that return HttpClient Modifier and Type Method Description protected HttpClient
AbstractProxyServlet. createHttpClient()
Creates aHttpClient
instance, configured with init parameters of this servlet.protected HttpClient
AbstractProxyServlet. getHttpClient()
protected HttpClient
AbstractProxyServlet. newHttpClient()
The servlet init parameter 'selectors' can be set for the number of selector threads to be used by the HttpClient.Constructors in org.eclipse.jetty.proxy with parameters of type HttpClient Constructor Description GZIPContentTransformer(HttpClient httpClient, AsyncMiddleManServlet.ContentTransformer transformer)
-
Uses of HttpClient in org.eclipse.jetty.security.openid
Methods in org.eclipse.jetty.security.openid that return HttpClient Modifier and Type Method Description HttpClient
OpenIdConfiguration. getHttpClient()
Constructors in org.eclipse.jetty.security.openid with parameters of type HttpClient Constructor Description OpenIdConfiguration(java.lang.String issuer, java.lang.String authorizationEndpoint, java.lang.String tokenEndpoint, java.lang.String clientId, java.lang.String clientSecret, java.lang.String authMethod, HttpClient httpClient)
Create an OpenID configuration for a specific OIDC provider.OpenIdConfiguration(java.lang.String issuer, java.lang.String authorizationEndpoint, java.lang.String tokenEndpoint, java.lang.String clientId, java.lang.String clientSecret, HttpClient httpClient)
Create an OpenID configuration for a specific OIDC provider. -
Uses of HttpClient in org.eclipse.jetty.unixsocket.client
Methods in org.eclipse.jetty.unixsocket.client with parameters of type HttpClient Modifier and Type Method Description protected SelectorManager
HttpClientTransportOverUnixSockets. newSelectorManager(HttpClient client)
Constructors in org.eclipse.jetty.unixsocket.client with parameters of type HttpClient Constructor Description UnixSocketSelectorManager(HttpClient client, int selectors)
-
Uses of HttpClient in org.eclipse.jetty.websocket.client
Methods in org.eclipse.jetty.websocket.client that return HttpClient Modifier and Type Method Description static HttpClient
HttpClientProvider. get(WebSocketContainerScope scope)
HttpClient
WebSocketClient. getHttpClient()
Get the internalHttpClient
.Constructors in org.eclipse.jetty.websocket.client with parameters of type HttpClient Constructor Description WebSocketClient(HttpClient httpClient)
Instantiate a WebSocketClient using provided HttpClient.WebSocketClient(HttpClient httpClient, DecoratedObjectFactory decoratedObjectFactory)
Instantiate a WebSocketClient using HttpClient for defaultsWebSocketClient(WebSocketContainerScope scope, EventDriverFactory eventDriverFactory, SessionFactory sessionFactory, HttpClient httpClient)
Create WebSocketClient based on pre-existing Container Scope, to allow sharing of internal features like Executor, ByteBufferPool, SSLContextFactory, etc.WebSocketUpgradeRequest(WebSocketClient wsClient, HttpClient httpClient, java.net.URI wsURI, java.lang.Object localEndpoint)
Initiating a WebSocket Upgrade using HTTP/1.1WebSocketUpgradeRequest(WebSocketClient wsClient, HttpClient httpClient, ClientUpgradeRequest request)
Exists for internal use of HttpClient by WebSocketClient. -
Uses of HttpClient in org.eclipse.jetty.websocket.jsr356
Constructors in org.eclipse.jetty.websocket.jsr356 with parameters of type HttpClient Constructor Description ClientContainer(HttpClient httpClient)
Create aWebSocketContainer
using the suppliedHttpClient
for environments where you want to configure SSL/TLS or Proxy behaviors.ClientContainer(WebSocketContainerScope scope, HttpClient httpClient)
This is the entry point for ServerContainer, via ServletContext.getAttribute(ServerContainer.class.getName()) -
Uses of HttpClient in org.eclipse.jetty.websocket.jsr356.server
Constructors in org.eclipse.jetty.websocket.jsr356.server with parameters of type HttpClient Constructor Description ServerContainer(NativeWebSocketConfiguration configuration, HttpClient httpClient)
-