Uses of Interface
javax.ws.rs.core.MultivaluedMap
Packages that use MultivaluedMap
Package
Description
Low-level interfaces and annotations used to create RESTful service
resources.
APIs that provide extensions to the types supported by the JAX-RS API.
-
Uses of MultivaluedMap in javax.ws.rs.core
Methods in javax.ws.rs.core that return MultivaluedMapModifier and TypeMethodDescriptionPathSegment.getMatrixParameters()
Get a map of the matrix parameters associated with the path segment.abstract MultivaluedMap
<String, Object> Response.getMetadata()
Get metadata associated with the response as a map.UriInfo.getPathParameters()
Get the values of any embedded URI template parameters.UriInfo.getPathParameters
(boolean decode) Get the values of any embedded URI template parameters.UriInfo.getQueryParameters()
Get the URI query parameters of the current request.UriInfo.getQueryParameters
(boolean decode) Get the URI query parameters of the current request.HttpHeaders.getRequestHeaders()
Get the values of HTTP request headers. -
Uses of MultivaluedMap in javax.ws.rs.ext
Methods in javax.ws.rs.ext with parameters of type MultivaluedMapModifier and TypeMethodDescriptionMessageBodyReader.readFrom
(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) Read a type from theInputStream
.void
MessageBodyWriter.writeTo
(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) Write a type to an HTTP response.