|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MultivaluedMap | |
|---|---|
| javax.ws.rs.client | The JAX-RS client API |
| javax.ws.rs.container | TODO javadoc. |
| 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.client |
|---|
| Methods in javax.ws.rs.client that return MultivaluedMap | |
|---|---|
MultivaluedMap<java.lang.String,java.lang.String> |
ClientResponseContext.getHeaders()
Get the mutable response headers multivalued map. |
MultivaluedMap<java.lang.String,java.lang.Object> |
ClientRequestContext.getHeaders()
Get the mutable request headers multivalued map. |
| Methods in javax.ws.rs.client with parameters of type MultivaluedMap | |
|---|---|
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. |
WebTarget |
WebTarget.queryParams(MultivaluedMap<java.lang.String,java.lang.Object> parameters)
Create a new WebTarget instance by adding one or more query parameters and
respective values to the URI of the current target instance. |
| Uses of MultivaluedMap in javax.ws.rs.container |
|---|
| Methods in javax.ws.rs.container that return MultivaluedMap | |
|---|---|
MultivaluedMap<java.lang.String,java.lang.Object> |
ContainerResponseContext.getHeaders()
Get the mutable response headers multivalued map. |
MultivaluedMap<java.lang.String,java.lang.String> |
ContainerRequestContext.getHeaders()
Get the mutable request headers multivalued map. |
| Uses of MultivaluedMap in javax.ws.rs.core |
|---|
| Classes in javax.ws.rs.core that implement MultivaluedMap | |
|---|---|
class |
AbstractMultivaluedMap<K,V>
Abstract skeleton implementation of a MultivaluedMap that is backed
by a [key, multi-value] store represented as a Map<K, List<V>>. |
class |
MultivaluedHashMap<K,V>
A hash table based implementation of MultivaluedMap interface. |
| Methods in javax.ws.rs.core that return MultivaluedMap | |
|---|---|
MultivaluedMap<java.lang.String,java.lang.String> |
Form.asMap()
Returns multivalued map representation of the form. |
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()
Get metadata (headers) associated with the response as a multivalued map. |
MultivaluedMap<java.lang.String,java.lang.String> |
Link.getParams()
Returns an immutable map that includes all the link parameters defined on this link. |
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. |
| Methods in javax.ws.rs.core with parameters of type MultivaluedMap | |
|---|---|
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 javax.ws.rs.core with parameters of type MultivaluedMap | |
|---|---|
Form(MultivaluedMap<java.lang.String,java.lang.String> store)
Create a new form data instance and register the underlying parameter store. |
|
MultivaluedHashMap(MultivaluedMap<? extends K,? extends V> map)
Constructs a new multivalued hash map with the same mappings as the specified MultivaluedMap. |
|
| Uses of MultivaluedMap in javax.ws.rs.ext |
|---|
| Methods in javax.ws.rs.ext that return MultivaluedMap | |
|---|---|
MultivaluedMap<java.lang.String,java.lang.Object> |
WriterInterceptorContext.getHeaders()
Get mutable map of HTTP headers. |
MultivaluedMap<java.lang.String,java.lang.String> |
ReaderInterceptorContext.getHeaders()
Get mutable map of HTTP headers. |
| Methods in javax.ws.rs.ext with parameters of type MultivaluedMap | |
|---|---|
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 the InputStream. |
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||