Uses of Interface
javax.ws.rs.core.MultivaluedMap
-
Packages that use MultivaluedMap Package Description javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.javax.ws.rs.ext 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 MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>PathSegment. 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.MultivaluedMap<String,String>UriInfo. getPathParameters()Get the values of any embedded URI template parameters.MultivaluedMap<String,String>UriInfo. getPathParameters(boolean decode)Get the values of any embedded URI template parameters.MultivaluedMap<String,String>UriInfo. getQueryParameters()Get the URI query parameters of the current request.MultivaluedMap<String,String>UriInfo. getQueryParameters(boolean decode)Get the URI query parameters of the current request.MultivaluedMap<String,String>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 MultivaluedMap Modifier and Type Method Description TMessageBodyReader. readFrom(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Read a type from theInputStream.voidMessageBodyWriter. writeTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Write a type to an HTTP response.
-