Uses of Class
org.jboss.resteasy.client.ClientRequest

Packages that use ClientRequest
org.jboss.resteasy.client   
org.jboss.resteasy.client.cache   
org.jboss.resteasy.client.core   
org.jboss.resteasy.client.core.executors   
org.jboss.resteasy.client.core.extractors   
org.jboss.resteasy.client.core.marshallers   
org.jboss.resteasy.core.interception   
org.jboss.resteasy.spi   
org.jboss.resteasy.spi.interception   
org.jboss.resteasy.test   
 

Uses of ClientRequest in org.jboss.resteasy.client
 

Methods in org.jboss.resteasy.client that return ClientRequest
 ClientRequest ClientRequest.accept(MediaType accepts)
           
 ClientRequest ClientRequest.accept(java.lang.String accept)
           
 ClientRequest ClientRequest.addLink(Link link)
           
 ClientRequest ClientRequest.addLink(java.lang.String title, java.lang.String rel, java.lang.String href, java.lang.String type)
           
 ClientRequest ClientRequest.body(MediaType contentType, java.lang.Object data)
           
 ClientRequest ClientRequest.body(MediaType contentType, java.lang.Object data, java.lang.Class type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations)
           
 ClientRequest ClientRequest.body(MediaType contentType, java.lang.Object data, GenericType genericType)
           
 ClientRequest ClientRequest.body(MediaType contentType, java.lang.Object data, java.lang.reflect.Type genericType)
           
 ClientRequest ClientRequest.body(java.lang.String contentType, java.lang.Object data)
           
 ClientRequest ClientRequest.cookie(Cookie cookie)
           
 ClientRequest ClientRequest.cookie(java.lang.String cookieName, java.lang.Object value)
           
 ClientRequest ClientRequestFactory.createRelativeRequest(java.lang.String uriTemplate)
           
 ClientRequest ClientRequestFactory.createRequest(java.lang.String uriTemplate)
           
 ClientRequest ClientExecutor.createRequest(java.lang.String uriTemplate)
           
 ClientRequest ClientExecutor.createRequest(UriBuilder uriBuilder)
           
 ClientRequest ClientRequest.followRedirects(boolean followRedirects)
           
 ClientRequest ClientRequest.formParameter(java.lang.String parameterName, java.lang.Object value)
           
 ClientRequest ClientRequest.header(java.lang.String headerName, java.lang.Object value)
           
 ClientRequest ClientRequest.matrixParameter(java.lang.String parameterName, java.lang.Object value)
           
 ClientRequest ClientRequest.pathParameter(java.lang.String parameterName, java.lang.Object value)
           
 ClientRequest ClientRequest.pathParameters(java.lang.Object... values)
           
 ClientRequest ClientRequest.queryParameter(java.lang.String parameterName, java.lang.Object value)
           
 

Methods in org.jboss.resteasy.client with parameters of type ClientRequest
 ClientResponse ClientExecutor.execute(ClientRequest request)
           
 

Uses of ClientRequest in org.jboss.resteasy.client.cache
 

Methods in org.jboss.resteasy.client.cache with parameters of type ClientRequest
 ClientResponse CacheInterceptor.cacheIfPossible(ClientRequest request, BaseClientResponse response)
           
protected  BrowserCache.Entry CacheInterceptor.getEntry(ClientRequest request)
           
protected  ClientResponse CacheInterceptor.handleExpired(ClientExecutionContext ctx, ClientRequest request, BrowserCache.Entry entry)
           
 ClientResponse CacheInterceptor.updateOnNotModified(ClientRequest request, BrowserCache.Entry old, BaseClientResponse response)
           
 

Uses of ClientRequest in org.jboss.resteasy.client.core
 

Methods in org.jboss.resteasy.client.core that return ClientRequest
protected  ClientRequest ClientInvoker.createRequest(java.lang.Object[] args)
           
 

Uses of ClientRequest in org.jboss.resteasy.client.core.executors
 

Methods in org.jboss.resteasy.client.core.executors that return ClientRequest
 ClientRequest URLConnectionClientExecutor.createRequest(java.lang.String uriTemplate)
           
 ClientRequest InMemoryClientExecutor.createRequest(java.lang.String uriTemplate)
           
 ClientRequest ApacheHttpClientExecutor.createRequest(java.lang.String uriTemplate)
           
 ClientRequest ApacheHttpClient4Executor.createRequest(java.lang.String uriTemplate)
           
 ClientRequest URLConnectionClientExecutor.createRequest(UriBuilder uriBuilder)
           
 ClientRequest InMemoryClientExecutor.createRequest(UriBuilder uriBuilder)
           
 ClientRequest ApacheHttpClientExecutor.createRequest(UriBuilder uriBuilder)
           
 ClientRequest ApacheHttpClient4Executor.createRequest(UriBuilder uriBuilder)
           
 

Methods in org.jboss.resteasy.client.core.executors with parameters of type ClientRequest
protected  BaseClientResponse InMemoryClientExecutor.createResponse(ClientRequest request, MockHttpResponse mockResponse)
           
 ClientResponse URLConnectionClientExecutor.execute(ClientRequest request)
           
 ClientResponse InMemoryClientExecutor.execute(ClientRequest request)
           
 ClientResponse ApacheHttpClientExecutor.execute(ClientRequest request)
           
 ClientResponse ApacheHttpClient4Executor.execute(ClientRequest request)
           
 void ApacheHttpClientExecutor.loadHttpMethod(ClientRequest request, org.apache.commons.httpclient.HttpMethodBase httpMethod)
           
 void ApacheHttpClient4Executor.loadHttpMethod(ClientRequest request, org.apache.http.client.methods.HttpRequestBase httpMethod)
           
 void InMemoryClientExecutor.loadHttpMethod(ClientRequest request, MockHttpRequest mockHttpRequest)
           
 

Uses of ClientRequest in org.jboss.resteasy.client.core.extractors
 

Methods in org.jboss.resteasy.client.core.extractors that return ClientRequest
 ClientRequest ClientRequestContext.getRequest()
           
 

Constructors in org.jboss.resteasy.client.core.extractors with parameters of type ClientRequest
ClientRequestContext(ClientRequest request, BaseClientResponse<?> clientResponse, ClientErrorHandler errorHandler)
           
 

Uses of ClientRequest in org.jboss.resteasy.client.core.marshallers
 

Methods in org.jboss.resteasy.client.core.marshallers with parameters of type ClientRequest
 void URIParamMarshaller.build(ClientRequest request, java.lang.Object target)
           
 void QueryParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void PathParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void NOOPMarshaller.build(ClientRequest request, java.lang.Object target)
           
 void MessageBodyParameterMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void MatrixParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void Marshaller.build(ClientRequest request, java.lang.Object target)
           
 void HeaderParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void FormParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void FormMarshaller.build(ClientRequest request, java.lang.Object object)
           
 void CookieParamMarshaller.build(ClientRequest request, java.lang.Object object)
           
 

Uses of ClientRequest in org.jboss.resteasy.core.interception
 

Fields in org.jboss.resteasy.core.interception declared as ClientRequest
protected  ClientRequest ClientExecutionContextImpl.request
           
 

Methods in org.jboss.resteasy.core.interception that return ClientRequest
 ClientRequest ClientExecutionContextImpl.getRequest()
           
 

Constructors in org.jboss.resteasy.core.interception with parameters of type ClientRequest
ClientExecutionContextImpl(java.util.List<ClientExecutionInterceptor> interceptors, ClientExecutor executor, ClientRequest request)
           
 

Uses of ClientRequest in org.jboss.resteasy.spi
 

Methods in org.jboss.resteasy.spi that return ClientRequest
 ClientRequest Link.request()
           
 ClientRequest Link.request(ClientExecutor executor)
           
 

Uses of ClientRequest in org.jboss.resteasy.spi.interception
 

Methods in org.jboss.resteasy.spi.interception that return ClientRequest
 ClientRequest ClientExecutionContext.getRequest()
           
 

Uses of ClientRequest in org.jboss.resteasy.test
 

Methods in org.jboss.resteasy.test that return ClientRequest
static ClientRequest TestPortProvider.createClientRequest(ClientRequestFactory factory, java.lang.String path)
           
static ClientRequest TestPortProvider.createClientRequest(java.lang.String path)
          Create a Resteasy ClientRequest object using the configured port.
 



Copyright © 2010. All Rights Reserved.