Uses of Class
javax.ws.rs.core.GenericType
Packages that use GenericType
Package
Description
The JAX-RS client API
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 GenericTypeModifier and TypeMethodDescription<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> Future
<T> AsyncInvoker.method
(String name, 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> 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 GenericTypeModifier and TypeMethodDescriptionabstract <T> T
Response.readEntity
(GenericType<T> entityType) Read the message entity input stream as an instance of specified Java type using aMessageBodyReader
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 aMessageBodyReader
that supports mapping the message entity stream onto the requested type.