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. 
org.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of GenericType in javax.ws.rs.client
 

Methods in javax.ws.rs.client with parameters of type GenericType
<T> Future<T>
AsyncInvoker.delete(GenericType<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> Future<T>
AsyncInvoker.get(GenericType<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> T
Invocation.invoke(GenericType<T> responseType)
          Synchronously invoke the request and receive a response of the specified generic type back.
<T> Future<T>
AsyncInvoker.method(String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> Future<T>
AsyncInvoker.method(String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request asynchronously.
<T> T
SyncInvoker.method(String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> Future<T>
AsyncInvoker.options(GenericType<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> Future<T>
AsyncInvoker.post(Entity<?> entity, GenericType<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> Future<T>
AsyncInvoker.put(Entity<?> entity, GenericType<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> 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> Future<T>
AsyncInvoker.trace(GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request asynchronously.
<T> T
SyncInvoker.trace(GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
 

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, 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.
 

Uses of GenericType in org.glassfish.jersey.client
 

Subclasses of GenericType in org.glassfish.jersey.client
 class ChunkedInput<T>
          Response entity type used for receiving messages in "typed" chunks.
 

Methods in org.glassfish.jersey.client with parameters of type GenericType
<T> T
JerseyInvocation.Builder.delete(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.get(GenericType<T> responseType)
           
<T> T
JerseyInvocation.invoke(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(String name, Entity<?> entity, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(String name, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.options(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.post(Entity<?> entity, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.put(Entity<?> entity, GenericType<T> responseType)
           
<T> Future<T>
JerseyInvocation.submit(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.trace(GenericType<T> responseType)
           
 

Uses of GenericType in org.glassfish.jersey.message.internal
 

Methods in org.glassfish.jersey.message.internal with parameters of type GenericType
<T> T
OutboundJaxrsResponse.readEntity(GenericType<T> entityType)
           
<T> T
OutboundJaxrsResponse.readEntity(GenericType<T> entityType, Annotation[] annotations)
           
 

Uses of GenericType in org.glassfish.jersey.server
 

Subclasses of GenericType in org.glassfish.jersey.server
 class ChunkedOutput<T>
          Used for sending messages in "typed" chunks.
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.