Uses of Class
jakarta.ws.rs.core.GenericType
-
Packages that use GenericType Package Description jakarta.ws.rs.client The JAX-RS client APIjakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.jakarta.ws.rs.sse Server-Sent Events related API.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 jakarta.ws.rs.client
Methods in jakarta.ws.rs.client with parameters of type GenericType Modifier and Type Method Description <T> Future<T>AsyncInvoker. delete(GenericType<T> responseType)Invoke HTTP DELETE method for the current request asynchronously.<T> CompletionStage<T>CompletionStageRxInvoker. delete(GenericType<T> responseType)<R> TRxInvoker. delete(GenericType<R> responseType)Invoke HTTP DELETE method for the current request.<T> TSyncInvoker. 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> CompletionStage<T>CompletionStageRxInvoker. get(GenericType<T> responseType)<R> TRxInvoker. get(GenericType<R> responseType)Invoke HTTP GET method for the current request.<T> TSyncInvoker. get(GenericType<T> responseType)Invoke HTTP GET method for the current request synchronously.<T> TInvocation. 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> CompletionStage<T>CompletionStageRxInvoker. method(String name, Entity<?> entity, GenericType<T> responseType)<T> CompletionStage<T>CompletionStageRxInvoker. method(String name, GenericType<T> responseType)<R> TRxInvoker. method(String name, Entity<?> entity, GenericType<R> responseType)Invoke an arbitrary method for the current request.<R> TRxInvoker. method(String name, GenericType<R> responseType)Invoke an arbitrary method for the current request.<T> TSyncInvoker. method(String name, Entity<?> entity, GenericType<T> responseType)Invoke an arbitrary method for the current request synchronously.<T> TSyncInvoker. 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> CompletionStage<T>CompletionStageRxInvoker. options(GenericType<T> responseType)<R> TRxInvoker. options(GenericType<R> responseType)Invoke HTTP OPTIONS method for the current request.<T> TSyncInvoker. 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> CompletionStage<T>CompletionStageRxInvoker. post(Entity<?> entity, GenericType<T> type)<R> TRxInvoker. post(Entity<?> entity, GenericType<R> responseType)Invoke HTTP POST method for the current request.<T> TSyncInvoker. 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> CompletionStage<T>CompletionStageRxInvoker. put(Entity<?> entity, GenericType<T> type)<R> TRxInvoker. put(Entity<?> entity, GenericType<R> responseType)Invoke HTTP PUT method for the current request.<T> TSyncInvoker. 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> CompletionStage<T>CompletionStageRxInvoker. trace(GenericType<T> responseType)<R> TRxInvoker. trace(GenericType<R> responseType)Invoke HTTP TRACE method for the current request.<T> TSyncInvoker. trace(GenericType<T> responseType)Invoke HTTP TRACE method for the current request synchronously. -
Uses of GenericType in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return GenericType Modifier and Type Method Description static GenericTypeGenericType. forInstance(Object instance)Create ageneric typefrom a Javainstance.Methods in jakarta.ws.rs.core with parameters of type GenericType Modifier and Type Method Description <T> EntityPart.BuilderEntityPart.Builder. content(T content, GenericType<T> type)Sets the content for this part.<T> TEntityPart. getContent(GenericType<T> type)Converts the content stream for this part to the specified type and returns it.abstract <T> TResponse. readEntity(GenericType<T> entityType)Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type.abstract <T> TResponse. readEntity(GenericType<T> entityType, Annotation[] annotations)Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type. -
Uses of GenericType in jakarta.ws.rs.sse
Methods in jakarta.ws.rs.sse with parameters of type GenericType Modifier and Type Method Description OutboundSseEvent.BuilderOutboundSseEvent.Builder. data(GenericType type, Object data)Set event data and a generic java type of event data.<T> TInboundSseEvent. readData(GenericType<T> type)Read event data as a given generic type.<T> TInboundSseEvent. readData(GenericType<T> type, MediaType mediaType)Read event data as a given generic type. -
Uses of GenericType in org.glassfish.jersey.client
Subclasses of GenericType in org.glassfish.jersey.client Modifier and Type Class Description classChunkedInput<T>Response entity type used for receiving messages in "typed" chunks.Methods in org.glassfish.jersey.client with parameters of type GenericType Modifier and Type Method Description <T> TJerseyInvocation.Builder. delete(GenericType<T> responseType)<T> TJerseyInvocation.Builder. get(GenericType<T> responseType)<T> TJerseyInvocation. invoke(GenericType<T> responseType)<R> TAbstractRxInvoker. method(String name, GenericType<R> responseType)<T> TJerseyInvocation.Builder. method(String name, Entity<?> entity, GenericType<T> responseType)<T> TJerseyInvocation.Builder. method(String name, GenericType<T> responseType)<T> TJerseyInvocation.Builder. options(GenericType<T> responseType)<T> TJerseyInvocation.Builder. post(Entity<?> entity, GenericType<T> responseType)<T> TJerseyInvocation.Builder. put(Entity<?> entity, GenericType<T> responseType)<T> TClientResponse. readEntity(GenericType<T> entityType)Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type.<T> TClientResponse. readEntity(GenericType<T> entityType, Annotation[] annotations)Read the message entity input stream as an instance of specified Java type using aMessageBodyReaderthat supports mapping the message entity stream onto the requested type.<T> Future<T>JerseyInvocation. submit(GenericType<T> responseType)<T> Future<T>JerseyInvocation. submit(GenericType<T> responseType, InvocationCallback<T> callback)Submit the request for an asynchronous invocation and register anInvocationCallbackto process the future result of the invocation.<T> TJerseyInvocation.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 Modifier and Type Method Description <T> TOutboundJaxrsResponse. readEntity(GenericType<T> entityType)<T> TOutboundJaxrsResponse. readEntity(GenericType<T> entityType, Annotation[] annotations) -
Uses of GenericType in org.glassfish.jersey.server
Subclasses of GenericType in org.glassfish.jersey.server Modifier and Type Class Description classChunkedOutput<T>Used for sending messages in "typed" chunks.
-