Uses of Interface
jakarta.ws.rs.core.MultivaluedMap
-
Packages that use MultivaluedMap Package Description jakarta.ws.rs.client The JAX-RS client APIjakarta.ws.rs.container Container-specific JAX-RS API.jakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. -
-
Uses of MultivaluedMap in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<java.lang.String,java.lang.Object>
ClientRequestContext. getHeaders()
Get the mutable request headers multivalued map.MultivaluedMap<java.lang.String,java.lang.String>
ClientResponseContext. getHeaders()
Get the mutable response headers multivalued map.MultivaluedMap<java.lang.String,java.lang.String>
ClientRequestContext. getStringHeaders()
Get a string view of header values associated with the message.Methods in jakarta.ws.rs.client with parameters of type MultivaluedMap Modifier and Type Method Description static Entity<Form>
Entity. form(MultivaluedMap<java.lang.String,java.lang.String> formData)
Create an "application/x-www-form-urlencoded" form entity.Invocation.Builder
Invocation.Builder. headers(MultivaluedMap<java.lang.String,java.lang.Object> headers)
Replaces all existing headers with the newly supplied headers. -
Uses of MultivaluedMap in jakarta.ws.rs.container
Methods in jakarta.ws.rs.container that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<java.lang.String,java.lang.String>
ContainerRequestContext. getHeaders()
Get the mutable request headers multivalued map.MultivaluedMap<java.lang.String,java.lang.Object>
ContainerResponseContext. getHeaders()
Get the mutable response headers multivalued map.MultivaluedMap<java.lang.String,java.lang.String>
ContainerResponseContext. getStringHeaders()
Get a string view of header values associated with the message. -
Uses of MultivaluedMap in jakarta.ws.rs.core
Classes in jakarta.ws.rs.core that implement MultivaluedMap Modifier and Type Class Description class
AbstractMultivaluedMap<K,V>
Abstract skeleton implementation of aMultivaluedMap
that is backed by a [key, multi-value] store represented as aMap<K, List<V>>
.class
MultivaluedHashMap<K,V>
A hash table based implementation ofMultivaluedMap
interface.Fields in jakarta.ws.rs.core declared as MultivaluedMap Modifier and Type Field Description private MultivaluedMap<java.lang.String,java.lang.String>
Form. parameters
Methods in jakarta.ws.rs.core that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<java.lang.String,java.lang.String>
Form. asMap()
Returns multivalued map representation of the form.MultivaluedMap<java.lang.String,java.lang.String>
EntityPart. getHeaders()
Returns an immutable multivalued map of headers for this specific part.MultivaluedMap<java.lang.String,java.lang.Object>
Response. getHeaders()
Get view of the response headers and their object values.MultivaluedMap<java.lang.String,java.lang.String>
PathSegment. getMatrixParameters()
Get a map of the matrix parameters associated with the path segment.abstract MultivaluedMap<java.lang.String,java.lang.Object>
Response. getMetadata()
MultivaluedMap<java.lang.String,java.lang.String>
UriInfo. getPathParameters()
Get the values of any embedded URI template parameters.MultivaluedMap<java.lang.String,java.lang.String>
UriInfo. getPathParameters(boolean decode)
Get the values of any embedded URI template parameters.MultivaluedMap<java.lang.String,java.lang.String>
UriInfo. getQueryParameters()
Get the URI query parameters of the current request.MultivaluedMap<java.lang.String,java.lang.String>
UriInfo. getQueryParameters(boolean decode)
Get the URI query parameters of the current request.MultivaluedMap<java.lang.String,java.lang.String>
HttpHeaders. getRequestHeaders()
Get the values of HTTP request headers.abstract MultivaluedMap<java.lang.String,java.lang.String>
Response. getStringHeaders()
Get view of the response headers and their string values.Methods in jakarta.ws.rs.core with parameters of type MultivaluedMap Modifier and Type Method Description boolean
AbstractMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)
boolean
MultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)
Compare the specified map with this map for equality modulo the order of values for each key.EntityPart.Builder
EntityPart.Builder. headers(MultivaluedMap<java.lang.String,java.lang.String> newHeaders)
Adds new headers or replaces previously added headers.private <T extends K,U extends V>
voidMultivaluedHashMap. putAll(MultivaluedMap<T,U> map)
This private method is used by the copy constructor to avoid exposing additional generic parameters through the public API documentation.abstract Response.ResponseBuilder
Response.ResponseBuilder. replaceAll(MultivaluedMap<java.lang.String,java.lang.Object> headers)
Replaces all existing headers with the newly supplied headers.Constructors in jakarta.ws.rs.core with parameters of type MultivaluedMap Constructor Description Form(MultivaluedMap<java.lang.String,java.lang.String> store)
Create a new form data instance and register a custom underlying parameter store.MultivaluedHashMap(MultivaluedMap<? extends K,? extends V> map)
Constructs a new multivalued hash map with the same mappings as the specifiedMultivaluedMap
. -
Uses of MultivaluedMap in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<java.lang.String,java.lang.String>
ReaderInterceptorContext. getHeaders()
Get mutable map of HTTP headers.MultivaluedMap<java.lang.String,java.lang.Object>
WriterInterceptorContext. getHeaders()
Get mutable map of HTTP headers.Methods in jakarta.ws.rs.ext with parameters of type MultivaluedMap Modifier and Type Method Description T
MessageBodyReader. readFrom(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, java.io.InputStream entityStream)
Read a type from theInputStream
.void
MessageBodyWriter. writeTo(T t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
Write a type to an HTTP message.
-