public interface MultivaluedParameterExtractor<T>
name
from the supplied multivalued map
into an object of a custom
Java type.Modifier and Type | Method and Description |
---|---|
T |
extract(javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> parameters)
Extract the map entry identified by a
name (and using
the configured default value ) from
the supplied multivalued map . |
java.lang.String |
getDefaultValueString()
Default entry value (string) that will be used in case the entry
is not present in the supplied
multivalued map . |
java.lang.String |
getName()
Name of the parameter (map key) to be extracted from the supplied
multivalued map . |
java.lang.String getName()
multivalued map
.java.lang.String getDefaultValueString()
multivalued map
.T extract(javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> parameters)
name
(and using
the configured default value
) from
the supplied multivalued map
.parameters
- multivalued parameter map.