Uses of Class
jakarta.ws.rs.client.Entity
-
Packages that use Entity Package Description jakarta.ws.rs.client The JAX-RS client APIorg.jboss.resteasy.client.jaxrs org.jboss.resteasy.client.jaxrs.internal org.jboss.resteasy.plugins.providers.sse.client -
-
Uses of Entity in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return Entity Modifier and Type Method Description static <T> Entity<T>Entity. entity(T entity, MediaType mediaType)Create an entity using a supplied content media type.static <T> Entity<T>Entity. entity(T entity, MediaType mediaType, Annotation[] annotations)Create an entity using a supplied content media type.static <T> Entity<T>Entity. entity(T entity, Variant variant)Create an entity using a supplied content media type.static <T> Entity<T>Entity. entity(T entity, Variant variant, Annotation[] annotations)Create an entity using a supplied content media type.static <T> Entity<T>Entity. entity(T entity, String mediaType)Create an entity using a supplied content media type.static Entity<Form>Entity. form(Form form)Create an "application/x-www-form-urlencoded" form entity.static Entity<Form>Entity. form(MultivaluedMap<String,String> formData)Create an "application/x-www-form-urlencoded" form entity.static <T> Entity<T>Entity. html(T entity)Create a "text/html" entity.static <T> Entity<T>Entity. json(T entity)Create an "application/json" entity.static <T> Entity<T>Entity. text(T entity)Create a "text/plain" entity.static <T> Entity<T>Entity. xhtml(T entity)Create an "application/xhtml+xml" entity.static <T> Entity<T>Entity. xml(T entity)Create an "application/xml" entity.Methods in jakarta.ws.rs.client with parameters of type Entity Modifier and Type Method Description InvocationInvocation.Builder. build(String method, Entity<?> entity)Build a request invocation using an arbitrary request method name and request entity.InvocationInvocation.Builder. buildPost(Entity<?> entity)Build a POST request invocation.InvocationInvocation.Builder. buildPut(Entity<?> entity)Build a PUT request invocation.Future<Response>AsyncInvoker. method(String name, Entity<?> entity)Invoke an arbitrary method for the current request asynchronously.<T> Future<T>AsyncInvoker. method(String name, Entity<?> entity, InvocationCallback<T> callback)Invoke an arbitrary method for the current request asynchronously.<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, Entity<?> entity, Class<T> responseType)Invoke an arbitrary method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. method(String name, Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvoker. method(String name, Entity<?> entity, GenericType<T> responseType)<T> CompletionStage<T>CompletionStageRxInvoker. method(String name, Entity<?> entity, Class<T> responseType)TRxInvoker. method(String name, Entity<?> entity)Invoke an arbitrary method for the current request.<R> TRxInvoker. method(String name, Entity<?> entity, GenericType<R> responseType)Invoke an arbitrary method for the current request.<R> TRxInvoker. method(String name, Entity<?> entity, Class<R> responseType)Invoke an arbitrary method for the current request.ResponseSyncInvoker. method(String name, Entity<?> entity)Invoke an arbitrary method for the current request synchronously.<T> TSyncInvoker. method(String name, Entity<?> entity, GenericType<T> responseType)Invoke an arbitrary method for the current request synchronously.<T> TSyncInvoker. method(String name, Entity<?> entity, Class<T> responseType)Invoke an arbitrary method for the current request synchronously.Future<Response>AsyncInvoker. post(Entity<?> entity)Invoke HTTP POST method for the current request asynchronously.<T> Future<T>AsyncInvoker. post(Entity<?> entity, InvocationCallback<T> callback)Invoke HTTP POST method for the current request asynchronously.<T> Future<T>AsyncInvoker. post(Entity<?> entity, GenericType<T> responseType)Invoke HTTP POST method for the current request asynchronously.<T> Future<T>AsyncInvoker. post(Entity<?> entity, Class<T> responseType)Invoke HTTP POST method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. post(Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvoker. post(Entity<?> entity, GenericType<T> type)<T> CompletionStage<T>CompletionStageRxInvoker. post(Entity<?> entity, Class<T> clazz)TRxInvoker. post(Entity<?> entity)Invoke HTTP POST method for the current request.<R> TRxInvoker. post(Entity<?> entity, GenericType<R> responseType)Invoke HTTP POST method for the current request.<R> TRxInvoker. post(Entity<?> entity, Class<R> responseType)Invoke HTTP POST method for the current request.ResponseSyncInvoker. post(Entity<?> entity)Invoke HTTP POST method for the current request synchronously.<T> TSyncInvoker. post(Entity<?> entity, GenericType<T> responseType)Invoke HTTP POST method for the current request synchronously.<T> TSyncInvoker. post(Entity<?> entity, Class<T> responseType)Invoke HTTP POST method for the current request synchronously.Future<Response>AsyncInvoker. put(Entity<?> entity)Invoke HTTP PUT method for the current request asynchronously.<T> Future<T>AsyncInvoker. put(Entity<?> entity, InvocationCallback<T> callback)Invoke HTTP PUT method for the current request asynchronously.<T> Future<T>AsyncInvoker. put(Entity<?> entity, GenericType<T> responseType)Invoke HTTP PUT method for the current request asynchronously.<T> Future<T>AsyncInvoker. put(Entity<?> entity, Class<T> responseType)Invoke HTTP PUT method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. put(Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvoker. put(Entity<?> entity, GenericType<T> type)<T> CompletionStage<T>CompletionStageRxInvoker. put(Entity<?> entity, Class<T> clazz)TRxInvoker. put(Entity<?> entity)Invoke HTTP PUT method for the current request.<R> TRxInvoker. put(Entity<?> entity, GenericType<R> responseType)Invoke HTTP PUT method for the current request.<R> TRxInvoker. put(Entity<?> entity, Class<R> responseType)Invoke HTTP PUT method for the current request.ResponseSyncInvoker. put(Entity<?> entity)Invoke HTTP PUT method for the current request synchronously.<T> TSyncInvoker. put(Entity<?> entity, GenericType<T> responseType)Invoke HTTP PUT method for the current request synchronously.<T> TSyncInvoker. put(Entity<?> entity, Class<T> responseType)Invoke HTTP PUT method for the current request synchronously. -
Uses of Entity in org.jboss.resteasy.client.jaxrs
Methods in org.jboss.resteasy.client.jaxrs with parameters of type Entity Modifier and Type Method Description org.reactivestreams.Publisher<Response>PublisherRxInvoker. method(String name, Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. method(String name, Entity<?> entity, GenericType<T> responseType)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. method(String name, Entity<?> entity, Class<T> responseType)org.reactivestreams.Publisher<Response>PublisherRxInvoker. post(Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. post(Entity<?> entity, GenericType<T> type)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. post(Entity<?> entity, Class<T> clazz)org.reactivestreams.Publisher<Response>PublisherRxInvoker. put(Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. put(Entity<?> entity, GenericType<T> type)<T> org.reactivestreams.Publisher<T>PublisherRxInvoker. put(Entity<?> entity, Class<T> clazz) -
Uses of Entity in org.jboss.resteasy.client.jaxrs.internal
Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Entity Modifier and Type Method Description InvocationClientInvocationBuilder. build(String method, Entity<?> entity)InvocationClientInvocationBuilder. buildPost(Entity<?> entity)InvocationClientInvocationBuilder. buildPut(Entity<?> entity)Future<Response>AsynchronousInvoke. method(String name, Entity<?> entity)<T> Future<T>AsynchronousInvoke. method(String name, Entity<?> entity, InvocationCallback<T> callback)<T> Future<T>AsynchronousInvoke. method(String name, Entity<?> entity, GenericType<T> responseType)<T> Future<T>AsynchronousInvoke. method(String name, Entity<?> entity, Class<T> responseType)ResponseClientInvocationBuilder. method(String name, Entity<?> entity)<T> TClientInvocationBuilder. method(String name, Entity<?> entity, GenericType<T> responseType)<T> TClientInvocationBuilder. method(String name, Entity<?> entity, Class<T> responseType)CompletionStage<Response>CompletionStageRxInvokerImpl. method(String name, Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvokerImpl. method(String name, Entity<?> entity, GenericType<T> responseType)<T> CompletionStage<T>CompletionStageRxInvokerImpl. method(String name, Entity<?> entity, Class<T> responseType)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. method(String name, Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. method(String name, Entity<?> entity, GenericType<T> responseType)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. method(String name, Entity<?> entity, Class<T> responseType)Future<Response>AsynchronousInvoke. patch(Entity<?> entity)<T> Future<T>AsynchronousInvoke. patch(Entity<?> entity, InvocationCallback<T> callback)<T> Future<T>AsynchronousInvoke. patch(Entity<?> entity, GenericType<T> responseType)<T> Future<T>AsynchronousInvoke. patch(Entity<?> entity, Class<T> responseType)ResponseClientInvocationBuilder. patch(Entity<?> entity)<T> TClientInvocationBuilder. patch(Entity<?> entity, GenericType<T> responseType)<T> TClientInvocationBuilder. patch(Entity<?> entity, Class<T> responseType)CompletionStage<Response>CompletionStageRxInvokerImpl. patch(Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvokerImpl. patch(Entity<?> entity, GenericType<T> responseType)<T> CompletionStage<T>CompletionStageRxInvokerImpl. patch(Entity<?> entity, Class<T> responseType)Future<Response>AsynchronousInvoke. post(Entity<?> entity)<T> Future<T>AsynchronousInvoke. post(Entity<?> entity, InvocationCallback<T> callback)<T> Future<T>AsynchronousInvoke. post(Entity<?> entity, GenericType<T> responseType)<T> Future<T>AsynchronousInvoke. post(Entity<?> entity, Class<T> responseType)ResponseClientInvocationBuilder. post(Entity<?> entity)<T> TClientInvocationBuilder. post(Entity<?> entity, GenericType<T> responseType)<T> TClientInvocationBuilder. post(Entity<?> entity, Class<T> responseType)CompletionStage<Response>CompletionStageRxInvokerImpl. post(Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvokerImpl. post(Entity<?> entity, GenericType<T> type)<T> CompletionStage<T>CompletionStageRxInvokerImpl. post(Entity<?> entity, Class<T> clazz)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. post(Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. post(Entity<?> entity, GenericType<T> type)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. post(Entity<?> entity, Class<T> clazz)Future<Response>AsynchronousInvoke. put(Entity<?> entity)<T> Future<T>AsynchronousInvoke. put(Entity<?> entity, InvocationCallback<T> callback)<T> Future<T>AsynchronousInvoke. put(Entity<?> entity, GenericType<T> responseType)<T> Future<T>AsynchronousInvoke. put(Entity<?> entity, Class<T> responseType)ResponseClientInvocationBuilder. put(Entity<?> entity)<T> TClientInvocationBuilder. put(Entity<?> entity, GenericType<T> responseType)<T> TClientInvocationBuilder. put(Entity<?> entity, Class<T> responseType)CompletionStage<Response>CompletionStageRxInvokerImpl. put(Entity<?> entity)<T> CompletionStage<T>CompletionStageRxInvokerImpl. put(Entity<?> entity, GenericType<T> type)<T> CompletionStage<T>CompletionStageRxInvokerImpl. put(Entity<?> entity, Class<T> clazz)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. put(Entity<?> entity)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. put(Entity<?> entity, GenericType<T> type)<T> org.reactivestreams.Publisher<T>PublisherRxInvokerImpl. put(Entity<?> entity, Class<T> clazz)voidClientInvocation. setEntity(Entity<?> entity) -
Uses of Entity in org.jboss.resteasy.plugins.providers.sse.client
Methods in org.jboss.resteasy.plugins.providers.sse.client with parameters of type Entity Modifier and Type Method Description voidSseEventSourceImpl. open(String lastEventId, String verb, Entity<?> entity, MediaType... mediaTypes)
-