Uses of Class
javax.ws.rs.client.InvocationException

Packages that use InvocationException
javax.ws.rs.client The JAX-RS client API 
 

Uses of InvocationException in javax.ws.rs.client
 

Methods in javax.ws.rs.client with parameters of type InvocationException
 void InvocationCallback.failed(InvocationException error)
          Called when the invocation has failed for any reason.
 

Methods in javax.ws.rs.client that throw InvocationException
 Response SyncInvoker.delete()
          Invoke HTTP DELETE method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.delete()
          Invoke HTTP DELETE method for the current request asynchronously.
<T> T
SyncInvoker.delete(java.lang.Class<T> responseType)
          Invoke HTTP DELETE method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.delete(java.lang.Class<T> responseType)
          Invoke HTTP DELETE method for the current request asynchronously.
<T> T
SyncInvoker.delete(GenericType<T> responseType)
          Invoke HTTP DELETE method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.delete(GenericType<T> responseType)
          Invoke HTTP DELETE method for the current request asynchronously.
 Response SyncInvoker.get()
          Invoke HTTP GET method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.get()
          Invoke HTTP GET method for the current request asynchronously.
<T> T
SyncInvoker.get(java.lang.Class<T> responseType)
          Invoke HTTP GET method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.get(java.lang.Class<T> responseType)
          Invoke HTTP GET method for the current request asynchronously.
<T> T
SyncInvoker.get(GenericType<T> responseType)
          Invoke HTTP GET method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.get(GenericType<T> responseType)
          Invoke HTTP GET method for the current request asynchronously.
 Response SyncInvoker.head()
          Invoke HTTP HEAD method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.head()
          Invoke HTTP HEAD method for the current request asynchronously.
 Response Invocation.invoke()
          Synchronously invoke the request and receive a response back.
<T> T
Invocation.invoke(java.lang.Class<T> responseType)
          Synchronously invoke the request and receive a response of the specified type back.
<T> T
Invocation.invoke(GenericType<T> responseType)
          Synchronously invoke the request and receive a response of the specified generic type back.
 Response SyncInvoker.method(java.lang.String name)
          Invoke an arbitrary method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.method(java.lang.String name)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(java.lang.String name, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
 Response SyncInvoker.method(java.lang.String name, Entity<?> entity)
          Invoke an arbitrary method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.method(java.lang.String name, Entity<?> entity)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(java.lang.String name, Entity<?> entity, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, Entity<?> entity, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(java.lang.String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(java.lang.String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
 Response SyncInvoker.options()
          Invoke HTTP OPTIONS method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.options()
          Invoke HTTP OPTIONS method for the current request asynchronously.
<T> T
SyncInvoker.options(java.lang.Class<T> responseType)
          Invoke HTTP OPTIONS method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.options(java.lang.Class<T> responseType)
          Invoke HTTP OPTIONS method for the current request asynchronously.
<T> T
SyncInvoker.options(GenericType<T> responseType)
          Invoke HTTP OPTIONS method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.options(GenericType<T> responseType)
          Invoke HTTP OPTIONS method for the current request asynchronously.
 Response SyncInvoker.post(Entity<?> entity)
          Invoke HTTP POST method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.post(Entity<?> entity)
          Invoke HTTP POST method for the current request asynchronously.
<T> T
SyncInvoker.post(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP POST method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.post(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP POST method for the current request asynchronously.
<T> T
SyncInvoker.post(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP POST method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.post(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP POST method for the current request asynchronously.
 Response SyncInvoker.put(Entity<?> entity)
          Invoke HTTP PUT method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.put(Entity<?> entity)
          Invoke HTTP PUT method for the current request asynchronously.
<T> T
SyncInvoker.put(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP PUT method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.put(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP PUT method for the current request asynchronously.
<T> T
SyncInvoker.put(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP PUT method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.put(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP PUT method for the current request asynchronously.
 Response SyncInvoker.trace(Entity<?> entity)
          Invoke HTTP TRACE method for the current request synchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.trace(Entity<?> entity)
          Invoke HTTP TRACE method for the current request asynchronously.
<T> T
SyncInvoker.trace(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.trace(Entity<?> entity, java.lang.Class<T> responseType)
          Invoke HTTP TRACE method for the current request asynchronously.
<T> T
SyncInvoker.trace(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.trace(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request asynchronously.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.