Uses of Class
com.sun.jersey.api.client.ClientResponse

Packages that use ClientResponse
com.sun.jersey.api.client Provides support for client-side communication with HTTP-based RESTful Web services. 
com.sun.jersey.api.client.async   
com.sun.jersey.api.client.filter Provides support for client filter chains and filters. 
com.sun.jersey.client.proxy   
com.sun.jersey.client.urlconnection   
 

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

Methods in com.sun.jersey.api.client that return ClientResponse
 ClientResponse UniformInterfaceException.getResponse()
          Get the client response assocatiated with the exception.
 ClientResponse Client.handle(ClientRequest request)
           
 ClientResponse ClientHandler.handle(ClientRequest cr)
          Handle a HTTP request as a ClientRequest and return the HTTP response as a ClientResponse.
 ClientResponse UniformInterface.head()
          Invoke the HEAD method.
 ClientResponse WebResource.head()
           
 ClientResponse WebResource.Builder.head()
           
 

Methods in com.sun.jersey.api.client that return types with arguments of type ClientResponse
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncViewResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncUniformInterface.head()
          Invoke the HEAD method.
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.head()
           
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.Builder.head()
           
 java.util.concurrent.Future<ClientResponse> AsyncUniformInterface.head(ITypeListener<ClientResponse> l)
          Invoke the HEAD method.
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.head(ITypeListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.Builder.head(ITypeListener<ClientResponse> l)
           
 

Methods in com.sun.jersey.api.client with parameters of type ClientResponse
<T> T
Client.view(java.lang.Class<T> c, ClientResponse response)
           
<T> T
Client.view(T t, ClientResponse response)
           
 

Method parameters in com.sun.jersey.api.client with type arguments of type ClientResponse
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncViewResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncUniformInterface.head(ITypeListener<ClientResponse> l)
          Invoke the HEAD method.
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.head(ITypeListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.Builder.head(ITypeListener<ClientResponse> l)
           
 

Constructors in com.sun.jersey.api.client with parameters of type ClientResponse
UniformInterfaceException(ClientResponse r)
          Construct a uniform interface exception.
UniformInterfaceException(ClientResponse r, boolean bufferResponseEntity)
          Construct a uniform interface exception.
UniformInterfaceException(java.lang.String message, ClientResponse r)
          Construct a uniform interface exception.
UniformInterfaceException(java.lang.String message, ClientResponse r, boolean bufferResponseEntity)
          Construct a uniform interface exception.
 

Uses of ClientResponse in com.sun.jersey.api.client.async
 

Methods in com.sun.jersey.api.client.async that return types with arguments of type ClientResponse
 java.util.concurrent.Future<ClientResponse> AsyncClientHandler.handle(ClientRequest r, FutureListener<ClientResponse> l)
          Invoke an asynchronous client request.
 

Method parameters in com.sun.jersey.api.client.async with type arguments of type ClientResponse
 java.util.concurrent.Future<ClientResponse> AsyncClientHandler.handle(ClientRequest r, FutureListener<ClientResponse> l)
          Invoke an asynchronous client request.
 

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

Methods in com.sun.jersey.api.client.filter that return ClientResponse
 ClientResponse HTTPBasicAuthFilter.handle(ClientRequest cr)
           
 ClientResponse GZIPContentEncodingFilter.handle(ClientRequest request)
           
 ClientResponse CsrfProtectionFilter.handle(ClientRequest cr)
          Adds X-Requested-By header (if not present) to potentially state changing requests.
abstract  ClientResponse ClientFilter.handle(ClientRequest cr)
           
 ClientResponse ConnectionListenerFilter.handle(ClientRequest request)
           
 ClientResponse HTTPDigestAuthFilter.handle(ClientRequest request)
           
 ClientResponse LoggingFilter.handle(ClientRequest request)
           
 

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

Methods in com.sun.jersey.client.proxy with parameters of type ClientResponse
 T ViewProxy.view(java.lang.Class<T> type, ClientResponse response)
           
 T ViewProxy.view(T v, ClientResponse cr)
           
 

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

Methods in com.sun.jersey.client.urlconnection that return ClientResponse
 ClientResponse URLConnectionClientHandler.handle(ClientRequest ro)
          ClientRequest handler.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.