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

Packages that use ClientRequest
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 ClientRequest in com.sun.jersey.api.client
 

Methods in com.sun.jersey.api.client that return ClientRequest
 ClientRequest ClientRequest.Builder.build(java.net.URI uri, java.lang.String method)
          Build the ClientRequest instance.
abstract  ClientRequest ClientRequest.clone()
          Clone the request.
 

Methods in com.sun.jersey.api.client with parameters of type ClientRequest
 java.io.OutputStream ClientRequestAdapter.adapt(ClientRequest request, java.io.OutputStream out)
          Adapt the output stream of the client request.
protected  RequestWriter.RequestEntityWriter RequestWriter.getRequestEntityWriter(ClientRequest ro)
          Get a request entity writer capable of writing the request entity.
 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.
 java.util.concurrent.Future<ClientResponse> AsyncWebResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 java.util.concurrent.Future<ClientResponse> AsyncViewResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
protected  void RequestWriter.writeRequestEntity(ClientRequest ro, RequestWriter.RequestEntityWriterListener listener)
          Write a request entity using an appropriate message body writer.
 

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

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

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

Methods in com.sun.jersey.api.client.filter with parameters of type ClientRequest
 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)
           
 ContainerListener OnStartConnectionListener.onStart(ClientRequest cr)
          Factory method for ContainerListener.
 

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

Methods in com.sun.jersey.client.proxy with parameters of type ClientRequest
 java.util.concurrent.Future<T> ViewProxy.asyncView(java.lang.Class<T> type, ClientRequest request, AsyncClientHandler handler)
           
 java.util.concurrent.Future<T> ViewProxy.asyncView(T v, ClientRequest request, AsyncClientHandler handler)
           
 T ViewProxy.view(java.lang.Class<T> type, ClientRequest request, ClientHandler handler)
           
 T ViewProxy.view(T v, ClientRequest request, ClientHandler handler)
           
 

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

Methods in com.sun.jersey.client.urlconnection with parameters of type ClientRequest
 ClientResponse URLConnectionClientHandler.handle(ClientRequest ro)
          ClientRequest handler.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.