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.impl   
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(URI uri, 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
 OutputStream ClientRequestAdapter.adapt(ClientRequest request, 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 ClientHandler.handle(ClientRequest cr)
          Handle a HTTP request as a ClientRequest and return the HTTP response as a ClientResponse.
 ClientResponse Client.handle(ClientRequest request)
           
 Future<ClientResponse> AsyncViewResource.handle(ClientRequest request, FutureListener<ClientResponse> l)
           
 Future<ClientResponse> AsyncWebResource.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
 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
abstract  ClientResponse ClientFilter.handle(ClientRequest cr)
           
 ClientResponse ConnectionListenerFilter.handle(ClientRequest request)
           
 ClientResponse CsrfProtectionFilter.handle(ClientRequest cr)
          Adds X-Requested-By header (if not present) to potentially state changing requests.
 ClientResponse HTTPBasicAuthFilter.handle(ClientRequest cr)
           
 ClientResponse GZIPContentEncodingFilter.handle(ClientRequest request)
           
 ClientResponse LoggingFilter.handle(ClientRequest request)
           
 ClientResponse HTTPDigestAuthFilter.handle(ClientRequest request)
           
 ContainerListener OnStartConnectionListener.onStart(ClientRequest cr)
          Factory method for ContainerListener.
 

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

Subclasses of ClientRequest in com.sun.jersey.client.impl
 class ClientRequestImpl
           
 

Methods in com.sun.jersey.client.impl that return ClientRequest
 ClientRequest ClientRequestImpl.clone()
           
 

Methods in com.sun.jersey.client.impl with parameters of type ClientRequest
 OutputStream ClientRequestImpl.adapt(ClientRequest request, OutputStream out)
           
 

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

Methods in com.sun.jersey.client.proxy with parameters of type ClientRequest
 Future<T> ViewProxy.asyncView(Class<T> type, ClientRequest request, AsyncClientHandler handler)
           
 Future<T> ViewProxy.asyncView(T v, ClientRequest request, AsyncClientHandler handler)
           
 T ViewProxy.view(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 © 2011 Oracle Corporation. All Rights Reserved.