Uses of Class
org.jboss.resteasy.client.ClientRequest
-
Packages that use ClientRequest Package Description org.jboss.resteasy.client JAX-RS specification 1.1 ({@link https://jcp.org/en/jsr/detail?id=311}) had no client framework, so Resteasy release 2.x provided one.org.jboss.resteasy.client.cache The client cache facility in Resteasy 2.x is deprecated in favor of the client cache facility in the resteasy-client module.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.client.jaxrs.internal.proxy.processors.invocation org.jboss.resteasy.core.interception org.jboss.resteasy.spi org.jboss.resteasy.spi.interception JAX-RS specification 1.1 ({@link https://jcp.org/en/jsr/detail?id=311}) had no interceptor framework, so Resteasy release 2.x provided one.org.jboss.resteasy.test -
-
Uses of ClientRequest in org.jboss.resteasy.client
Methods in org.jboss.resteasy.client that return ClientRequest Modifier and Type Method Description ClientRequest
ClientRequest. accept(java.lang.String accept)
Deprecated.ClientRequest
ClientRequest. accept(javax.ws.rs.core.MediaType accepts)
Deprecated.ClientRequest
ClientRequest. addLink(java.lang.String title, java.lang.String rel, java.lang.String href, java.lang.String type)
Deprecated.ClientRequest
ClientRequest. addLink(Link link)
Deprecated.ClientRequest
ClientRequest. body(java.lang.String contentType, java.lang.Object data)
Deprecated.ClientRequest
ClientRequest. body(javax.ws.rs.core.MediaType contentType, java.lang.Object data)
Deprecated.ClientRequest
ClientRequest. body(javax.ws.rs.core.MediaType contentType, java.lang.Object data, java.lang.Class type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations)
Deprecated.ClientRequest
ClientRequest. body(javax.ws.rs.core.MediaType contentType, java.lang.Object data, java.lang.reflect.Type genericType)
Deprecated.ClientRequest
ClientRequest. body(javax.ws.rs.core.MediaType contentType, java.lang.Object data, GenericType genericType)
Deprecated.ClientRequest
ClientRequest. cookie(java.lang.String cookieName, java.lang.Object value)
Deprecated.ClientRequest
ClientRequest. cookie(javax.ws.rs.core.Cookie cookie)
Deprecated.ClientRequest
ClientRequestFactory. createRelativeRequest(java.lang.String uriTemplate)
Deprecated.ClientRequest
ClientExecutor. createRequest(java.lang.String uriTemplate)
Deprecated.ClientRequest
ClientExecutor. createRequest(javax.ws.rs.core.UriBuilder uriBuilder)
Deprecated.ClientRequest
ClientRequestFactory. createRequest(java.lang.String uriTemplate)
Deprecated.ClientRequest
ClientRequest. createSubsequentRequest(java.net.URI uri)
Deprecated.ClientRequest
ClientRequest. followRedirects(boolean followRedirects)
Deprecated.ClientRequest
ClientRequest. formParameter(java.lang.String parameterName, java.lang.Object value)
Deprecated.ClientRequest
ClientRequest. header(java.lang.String headerName, java.lang.Object value)
Deprecated.ClientRequest
ClientRequest. matrixParameter(java.lang.String parameterName, java.lang.Object value)
Deprecated.ClientRequest
ClientRequest. pathParameter(java.lang.String parameterName, java.lang.Object value)
Deprecated.ClientRequest
ClientRequest. pathParameters(java.lang.Object... values)
Deprecated.ClientRequest
ClientRequest. queryParameter(java.lang.String parameterName, java.lang.Object value)
Deprecated.Methods in org.jboss.resteasy.client with parameters of type ClientRequest Modifier and Type Method Description ClientResponse
ClientExecutor. execute(ClientRequest request)
Deprecated. -
Uses of ClientRequest in org.jboss.resteasy.client.cache
Methods in org.jboss.resteasy.client.cache with parameters of type ClientRequest Modifier and Type Method Description private ClientResponse
CacheInterceptor. cache(ClientRequest request, ClientResponse response)
Deprecated.ClientResponse
CacheInterceptor. cacheIfPossible(ClientRequest request, BaseClientResponse response)
Deprecated.private BaseClientResponse
CacheInterceptor. createClientResponse(ClientRequest request, BrowserCache.Entry entry)
Deprecated.protected BrowserCache.Entry
CacheInterceptor. getEntry(ClientRequest request)
Deprecated.protected ClientResponse
CacheInterceptor. handleExpired(ClientExecutionContext ctx, ClientRequest request, BrowserCache.Entry entry)
Deprecated.ClientResponse
CacheInterceptor. updateOnNotModified(ClientRequest request, BrowserCache.Entry old, BaseClientResponse response)
Deprecated. -
Uses of ClientRequest in org.jboss.resteasy.client.core
Methods in org.jboss.resteasy.client.core that return ClientRequest Modifier and Type Method Description 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 Modifier and Type Method Description ClientRequest
ApacheHttpClient4Executor. createRequest(java.lang.String uriTemplate)
ClientRequest
ApacheHttpClient4Executor. createRequest(javax.ws.rs.core.UriBuilder uriBuilder)
ClientRequest
InMemoryClientExecutor. createRequest(java.lang.String uriTemplate)
ClientRequest
InMemoryClientExecutor. createRequest(javax.ws.rs.core.UriBuilder uriBuilder)
ClientRequest
URLConnectionClientExecutor. createRequest(java.lang.String uriTemplate)
ClientRequest
URLConnectionClientExecutor. createRequest(javax.ws.rs.core.UriBuilder uriBuilder)
Methods in org.jboss.resteasy.client.core.executors with parameters of type ClientRequest Modifier and Type Method Description protected org.apache.http.HttpEntity
ApacheHttpClient4Executor. buildEntity(ClientRequest request)
Build the HttpEntity to be sent to the Service as part of (POST) request.void
ApacheHttpClient4Executor. commitHeaders(ClientRequest request, org.apache.http.client.methods.HttpRequestBase httpMethod)
void
InMemoryClientExecutor. commitHeaders(ClientRequest request, MockHttpRequest mockHttpRequest)
private void
URLConnectionClientExecutor. commitHeaders(ClientRequest request, java.net.HttpURLConnection connection)
protected java.net.HttpURLConnection
URLConnectionClientExecutor. createConnection(ClientRequest request)
protected BaseClientResponse
InMemoryClientExecutor. createResponse(ClientRequest request, MockHttpResponse mockResponse)
ClientResponse
ApacheHttpClient4Executor. execute(ClientRequest request)
ClientResponse
InMemoryClientExecutor. execute(ClientRequest request)
ClientResponse<?>
URLConnectionClientExecutor. execute(ClientRequest request)
private <T> ClientResponse<T>
URLConnectionClientExecutor. execute(ClientRequest request, java.net.HttpURLConnection connection)
void
ApacheHttpClient4Executor. loadHttpMethod(ClientRequest request, org.apache.http.client.methods.HttpRequestBase httpMethod)
void
InMemoryClientExecutor. loadHttpMethod(ClientRequest request, MockHttpRequest mockHttpRequest)
private void
URLConnectionClientExecutor. outputBody(ClientRequest request, java.net.HttpURLConnection connection)
private void
InMemoryClientExecutor. setBody(ClientRequest request, MockHttpRequest mockHttpRequest)
private org.apache.commons.io.output.DeferredFileOutputStream
ApacheHttpClient4Executor. writeRequestBodyToOutputStream(ClientRequest request)
Creates the request OutputStream, to be sent to the end Service invoked, as a DeferredFileOutputStream. -
Uses of ClientRequest in org.jboss.resteasy.client.core.extractors
Fields in org.jboss.resteasy.client.core.extractors declared as ClientRequest Modifier and Type Field Description private ClientRequest
ClientRequestContext. request
Methods in org.jboss.resteasy.client.core.extractors that return ClientRequest Modifier and Type Method Description ClientRequest
ClientRequestContext. getRequest()
Constructors in org.jboss.resteasy.client.core.extractors with parameters of type ClientRequest Constructor Description ClientRequestContext(ClientRequest request, BaseClientResponse<?> clientResponse, ClientErrorHandler errorHandler, EntityExtractorFactory extractorFactory, java.net.URI baseURI)
-
Uses of ClientRequest in org.jboss.resteasy.client.core.marshallers
Methods in org.jboss.resteasy.client.core.marshallers with parameters of type ClientRequest Modifier and Type Method Description void
CookieParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
FormMarshaller. build(ClientRequest request, java.lang.Object object)
void
FormParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
HeaderParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
Marshaller. build(ClientRequest request, java.lang.Object target)
void
MatrixParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
MessageBodyParameterMarshaller. build(ClientRequest request, java.lang.Object object)
void
NOOPMarshaller. build(ClientRequest request, java.lang.Object target)
void
PathParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
QueryParamMarshaller. build(ClientRequest request, java.lang.Object object)
void
URIParamMarshaller. build(ClientRequest request, java.lang.Object target)
-
Uses of ClientRequest in org.jboss.resteasy.client.jaxrs.internal.proxy.processors.invocation
Methods in org.jboss.resteasy.client.jaxrs.internal.proxy.processors.invocation with parameters of type ClientRequest Modifier and Type Method Description void
MessageBodyParameterProcessor. 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 Modifier and Type Field Description protected ClientRequest
ClientExecutionContextImpl. request
Deprecated.Methods in org.jboss.resteasy.core.interception that return ClientRequest Modifier and Type Method Description ClientRequest
ClientExecutionContextImpl. getRequest()
Deprecated.Constructors in org.jboss.resteasy.core.interception with parameters of type ClientRequest Constructor Description ClientExecutionContextImpl(java.util.List<ClientExecutionInterceptor> interceptors, ClientExecutor executor, ClientRequest request)
Deprecated. -
Uses of ClientRequest in org.jboss.resteasy.spi
Methods in org.jboss.resteasy.spi that return ClientRequest Modifier and Type Method Description ClientRequest
Link. request()
Deprecated.ClientRequest
Link. request(ClientExecutor executor)
Deprecated. -
Uses of ClientRequest in org.jboss.resteasy.spi.interception
Methods in org.jboss.resteasy.spi.interception that return ClientRequest Modifier and Type Method Description ClientRequest
ClientExecutionContext. getRequest()
Deprecated. -
Uses of ClientRequest in org.jboss.resteasy.test
Methods in org.jboss.resteasy.test that return ClientRequest Modifier and Type Method Description static ClientRequest
TestPortProvider. createClientRequest(java.lang.String path)
Create a Resteasy ClientRequest object using the configured port.static ClientRequest
TestPortProvider. createClientRequest(ClientRequestFactory factory, java.lang.String path)
-