Uses of Class
javax.ws.rs.core.GenericType

Packages that use GenericType
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
 

Uses of GenericType in javax.ws.rs.client
 

Methods in javax.ws.rs.client with parameters of type GenericType
<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.
<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.
<T> T
Invocation.invoke(GenericType<T> responseType)
          Synchronously invoke the request and receive a response of the specified generic type back.
<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.
<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.
<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.
<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.
<T> java.util.concurrent.Future<T>
Invocation.submit(GenericType<T> responseType)
          Submit the request for an asynchronous invocation and receive a future response of the specified generic type back.
<T> T
SyncInvoker.trace(GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.trace(GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request asynchronously.
 

Uses of GenericType in javax.ws.rs.core
 

Methods in javax.ws.rs.core with parameters of type GenericType
abstract
<T> T
Response.readEntity(GenericType<T> entityType)
          Read the message entity input stream as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
abstract
<T> T
Response.readEntity(GenericType<T> entityType, java.lang.annotation.Annotation[] annotations)
          Read the message entity input stream as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
 



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