Uses of Class
org.jboss.resteasy.client.ClientResponse
-
Packages that use ClientResponse 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.core.interception org.jboss.resteasy.plugins.interceptors.encoding 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. -
-
Uses of ClientResponse in org.jboss.resteasy.client
Fields in org.jboss.resteasy.client declared as ClientResponse Modifier and Type Field Description private ClientResponse
ClientResponseFailure. response
Deprecated.Methods in org.jboss.resteasy.client that return ClientResponse Modifier and Type Method Description ClientResponse
ClientRequest. delete()
Deprecated.<T> ClientResponse<T>
ClientRequest. delete(java.lang.Class<T> returnType)
Deprecated.<T> ClientResponse<T>
ClientRequest. delete(java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. delete(GenericType type)
Deprecated.ClientResponse
ClientExecutor. execute(ClientRequest request)
Deprecated.ClientResponse
ClientRequest. execute()
Deprecated.ClientResponse
ClientRequest. get()
Deprecated.<T> ClientResponse<T>
ClientRequest. get(java.lang.Class<T> returnType)
Deprecated.Templates the returned ClientResponse for easy access to returned entity<T> ClientResponse<T>
ClientRequest. get(java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. get(GenericType type)
Deprecated.ClientResponse
ClientResponseFailure. getResponse()
Deprecated.ClientResponse
ClientRequest. head()
Deprecated.ClientResponse
ClientRequest. httpMethod(java.lang.String httpMethod)
Deprecated.<T> ClientResponse<T>
ClientRequest. httpMethod(java.lang.String method, java.lang.Class<T> returnType)
Deprecated.<T> ClientResponse<T>
ClientRequest. httpMethod(java.lang.String method, java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. httpMethod(java.lang.String method, GenericType type)
Deprecated.ClientResponse
ClientRequest. options()
Deprecated.<T> ClientResponse<T>
ClientRequest. options(java.lang.Class<T> returnType)
Deprecated.<T> ClientResponse<T>
ClientRequest. options(java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. options(GenericType type)
Deprecated.ClientResponse
ClientRequest. post()
Deprecated.<T> ClientResponse<T>
ClientRequest. post(java.lang.Class<T> returnType)
Deprecated.<T> ClientResponse<T>
ClientRequest. post(java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. post(GenericType type)
Deprecated.ClientResponse
ClientRequest. put()
Deprecated.<T> ClientResponse<T>
ClientRequest. put(java.lang.Class<T> returnType)
Deprecated.<T> ClientResponse<T>
ClientRequest. put(java.lang.Class<T> returnType, java.lang.reflect.Type genericType)
Deprecated.<T> ClientResponse<T>
ClientRequest. put(GenericType type)
Deprecated.Constructors in org.jboss.resteasy.client with parameters of type ClientResponse Constructor Description ClientResponseFailure(java.lang.String s, java.lang.Throwable throwable, ClientResponse response)
Deprecated.ClientResponseFailure(java.lang.String s, ClientResponse response)
Deprecated.ClientResponseFailure(java.lang.Throwable throwable, ClientResponse response)
Deprecated.ClientResponseFailure(ClientResponse response)
Deprecated. -
Uses of ClientResponse in org.jboss.resteasy.client.cache
Methods in org.jboss.resteasy.client.cache that return ClientResponse Modifier and Type Method Description private ClientResponse
CacheInterceptor. cache(ClientRequest request, ClientResponse response)
Deprecated.ClientResponse
CacheInterceptor. cacheIfPossible(ClientRequest request, BaseClientResponse response)
Deprecated.ClientResponse
CacheInterceptor. execute(ClientExecutionContext ctx)
Deprecated.protected ClientResponse
CacheInterceptor. handleExpired(ClientExecutionContext ctx, ClientRequest request, BrowserCache.Entry entry)
Deprecated.ClientResponse
CacheInterceptor. updateOnNotModified(ClientRequest request, BrowserCache.Entry old, BaseClientResponse response)
Deprecated.Methods in org.jboss.resteasy.client.cache with parameters of type ClientResponse Modifier and Type Method Description private ClientResponse
CacheInterceptor. cache(ClientRequest request, ClientResponse response)
Deprecated. -
Uses of ClientResponse in org.jboss.resteasy.client.core
Subclasses of ClientResponse in org.jboss.resteasy.client.core Modifier and Type Class Description class
BaseClientResponse<T>
Methods in org.jboss.resteasy.client.core that return ClientResponse Modifier and Type Method Description static ClientResponse
BaseClientResponse. copyFromError(ClientResponse copy)
Store entity within a byte array input stream because we want to release the connection if a ClientResponseFailure is thrown.Methods in org.jboss.resteasy.client.core with parameters of type ClientResponse Modifier and Type Method Description static ClientResponse
BaseClientResponse. copyFromError(ClientResponse copy)
Store entity within a byte array input stream because we want to release the connection if a ClientResponseFailure is thrown.void
ClientErrorInterceptor. handle(ClientResponse<?> response)
Attempt to handle the currentClientResponse
. -
Uses of ClientResponse in org.jboss.resteasy.client.core.executors
Methods in org.jboss.resteasy.client.core.executors that return ClientResponse Modifier and Type Method Description 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)
-
Uses of ClientResponse in org.jboss.resteasy.core.interception
Methods in org.jboss.resteasy.core.interception that return ClientResponse Modifier and Type Method Description ClientResponse
ClientExecutionContextImpl. proceed()
Deprecated. -
Uses of ClientResponse in org.jboss.resteasy.plugins.interceptors.encoding
Methods in org.jboss.resteasy.plugins.interceptors.encoding that return ClientResponse Modifier and Type Method Description ClientResponse
AcceptEncodingGZIPInterceptor. execute(ClientExecutionContext ctx)
Deprecated. -
Uses of ClientResponse in org.jboss.resteasy.spi.interception
Methods in org.jboss.resteasy.spi.interception that return ClientResponse Modifier and Type Method Description ClientResponse
ClientExecutionInterceptor. execute(ClientExecutionContext ctx)
Deprecated.ClientResponse
ClientExecutionContext. proceed()
Deprecated.
-