Uses of Interface
com.sun.jersey.api.client.ClientHandler

Packages that use ClientHandler
com.sun.jersey.api.client Provides support for client-side communication with HTTP-based RESTful Web services. 
com.sun.jersey.api.client.filter Provides support for client filter chains and filters. 
com.sun.jersey.client.apache Provides support for the Client API that utilizes the Apache HTTP client to send and receive HTTP request and responses. 
com.sun.jersey.client.proxy   
com.sun.jersey.client.urlconnection   
com.sun.jersey.oauth.client   
com.sun.jersey.test.framework.impl.container.inmemory   
 

Uses of ClientHandler in com.sun.jersey.api.client
 

Classes in com.sun.jersey.api.client that implement ClientHandler
 class Client
          The main class for creating WebResource instances and configuring the properties of connections and requests.
 class TerminatingClientHandler
          A terminating client handler that is invoked to produce an HTTP request to send to a resource and process the HTTP response received from the resource.
 

Constructors in com.sun.jersey.api.client with parameters of type ClientHandler
Client(ClientHandler root)
          Create a new client instance.
Client(ClientHandler root, ClientConfig config)
          Create a new client instance with a client configuration.
Client(ClientHandler root, ClientConfig config, IoCComponentProviderFactory provider)
          Create a new instance with a client configuration and a component provider.
 

Uses of ClientHandler in com.sun.jersey.api.client.filter
 

Classes in com.sun.jersey.api.client.filter that implement ClientHandler
 class ClientFilter
          A client filter capable of modifying the outbound HTTP request or the inbound HTTP response.
 class ConnectionListenerFilter
          ConnectionListener filter This filter does not modify input/output stream
 class GZIPContentEncodingFilter
          A GZIP content encoding filter.
 class HTTPBasicAuthFilter
          Client filter adding HTTP Basic Authentication header to the HTTP request, if no such header is already present
 class HTTPDigestAuthFilter
          Client filter adding HTTP Digest authentication headers in the request
 class LoggingFilter
          A logging filter.
 

Methods in com.sun.jersey.api.client.filter that return ClientHandler
 ClientHandler Filterable.getHeadHandler()
          Get the head client handler of the filter chain.
 ClientHandler ClientFilter.getNext()
          Get the next client handler to invoke in the chain of filters.
 

Constructors in com.sun.jersey.api.client.filter with parameters of type ClientHandler
Filterable(ClientHandler root)
          Construct with a root client handler.
 

Uses of ClientHandler in com.sun.jersey.client.apache
 

Classes in com.sun.jersey.client.apache that implement ClientHandler
 class ApacheHttpClient
          A Client that utilizes the Apache HTTP client to send and receive HTTP request and responses.
 class ApacheHttpClientHandler
          A root handler with Jakarta Commons HttpClient acting as a backend.
 

Uses of ClientHandler in com.sun.jersey.client.proxy
 

Methods in com.sun.jersey.client.proxy with parameters of type ClientHandler
 T ViewProxy.view(Class<T> type, ClientRequest request, ClientHandler handler)
           
 T ViewProxy.view(T v, ClientRequest request, ClientHandler handler)
           
 

Uses of ClientHandler in com.sun.jersey.client.urlconnection
 

Classes in com.sun.jersey.client.urlconnection that implement ClientHandler
 class URLConnectionClientHandler
          A terminating client handler that uses HttpURLConnection or HttpsURLConnection to make HTTP requests and receive HTTP responses.
 

Uses of ClientHandler in com.sun.jersey.oauth.client
 

Classes in com.sun.jersey.oauth.client that implement ClientHandler
 class OAuthClientFilter
          Client filter adding OAuth authorization header to the HTTP request, if no authorization header is already present.
 

Uses of ClientHandler in com.sun.jersey.test.framework.impl.container.inmemory
 

Classes in com.sun.jersey.test.framework.impl.container.inmemory that implement ClientHandler
 class TestResourceClientHandler
           
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.