Uses of Interface
jakarta.ws.rs.core.MultivaluedMap
-
-
Uses of MultivaluedMap in com.fasterxml.jackson.jakarta.rs.base
Methods in com.fasterxml.jackson.jakarta.rs.base with parameters of type MultivaluedMap Modifier and Type Method Description protected EP_CONFIGProviderBase. _endpointForReading(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders)Overridable helper method that will basically fetch representation of the endpoint that can be used to getObjectReaderto use for deserializing contentprotected EP_CONFIGProviderBase. _endpointForWriting(Object value, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders)protected voidProviderBase. _modifyHeaders(Object value, Class<?> type, Type genericType, Annotation[] annotations, MultivaluedMap<String,Object> httpHeaders, EP_CONFIG endpoint)Overridable method used for adding optional response headers before serializing response object.protected JsonEncodingProviderBase. findEncoding(MediaType mediaType, MultivaluedMap<String,Object> httpHeaders)Helper method to use for determining desired output encoding.ObjectProviderBase. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Method that Jakarta-RS container calls to deserialize given value.voidProviderBase. writeTo(Object value, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Method that Jakarta-RS container calls to serialize given value. -
Uses of MultivaluedMap in com.fasterxml.jackson.jakarta.rs.cfg
Methods in com.fasterxml.jackson.jakarta.rs.cfg with parameters of type MultivaluedMap Modifier and Type Method Description abstract ObjectReaderObjectReaderModifier. modify(EndpointConfigBase<?> endpoint, MultivaluedMap<String,String> httpHeaders, JavaType resultType, ObjectReader r, JsonParser p)Method called to let modifier make any changes it wants to to objects used for reading request objects for specified endpoint.abstract ObjectWriterObjectWriterModifier. modify(EndpointConfigBase<?> endpoint, MultivaluedMap<String,Object> responseHeaders, Object valueToWrite, ObjectWriter w, JsonGenerator g)Method called to let modifier make any changes it wants to to objects used for writing response for specified endpoint. -
Uses of MultivaluedMap in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,Object>ClientRequestContext. getHeaders()Get the mutable request headers multivalued map.MultivaluedMap<String,String>ClientResponseContext. getHeaders()Get the mutable response headers multivalued map.MultivaluedMap<String,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<String,String> formData)Create an "application/x-www-form-urlencoded" form entity.Invocation.BuilderInvocation.Builder. headers(MultivaluedMap<String,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<String,String>ContainerRequestContext. getHeaders()Get the mutable request headers multivalued map.MultivaluedMap<String,Object>ContainerResponseContext. getHeaders()Get the mutable response headers multivalued map.MultivaluedMap<String,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 classAbstractMultivaluedMap<K,V>Abstract skeleton implementation of aMultivaluedMapthat is backed by a [key, multi-value] store represented as aMap<K, List<V>>.classMultivaluedHashMap<K,V>A hash table based implementation ofMultivaluedMapinterface.Methods in jakarta.ws.rs.core that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>Form. asMap()Returns multivalued map representation of the form.MultivaluedMap<String,String>EntityPart. getHeaders()Returns an immutable multivalued map of headers for this specific part.MultivaluedMap<String,Object>Response. getHeaders()Get view of the response headers and their object values.MultivaluedMap<String,String>PathSegment. getMatrixParameters()Get a map of the matrix parameters associated with the path segment.abstract MultivaluedMap<String,Object>Response. getMetadata()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.abstract MultivaluedMap<String,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 booleanAbstractMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)booleanMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)Compare the specified map with this map for equality modulo the order of values for each key.EntityPart.BuilderEntityPart.Builder. headers(MultivaluedMap<String,String> newHeaders)Adds new headers or replaces previously added headers.abstract Response.ResponseBuilderResponse.ResponseBuilder. replaceAll(MultivaluedMap<String,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<String,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<String,String>ReaderInterceptorContext. getHeaders()Get mutable map of HTTP headers.MultivaluedMap<String,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 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 message. -
Uses of MultivaluedMap in org.jboss.resteasy.client.jaxrs
Methods in org.jboss.resteasy.client.jaxrs with parameters of type MultivaluedMap Modifier and Type Method Description ResteasyWebTargetResteasyWebTarget. queryParams(MultivaluedMap<String,Object> parameters)ResteasyWebTargetResteasyWebTarget. queryParamsNoTemplate(MultivaluedMap<String,Object> parameters)Will encode any '{}' characters and not treat them as template parameters. -
Uses of MultivaluedMap in org.jboss.resteasy.client.jaxrs.cache
Methods in org.jboss.resteasy.client.jaxrs.cache that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>BrowserCache.Entry. getHeaders()MultivaluedMap<String,String>CacheEntry. getHeaders()Methods in org.jboss.resteasy.client.jaxrs.cache with parameters of type MultivaluedMap Modifier and Type Method Description BrowserCache.EntryBrowserCache. put(String key, MediaType mediaType, MultivaluedMap<String,String> headers, byte[] cached, int expires, String etag, String lastModified)BrowserCache.EntryLightweightBrowserCache. put(String key, MediaType mediaType, MultivaluedMap<String,String> headers, byte[] cached, int expires, String etag, String lastModified)BrowserCache.EntryMapCache. put(String key, MediaType mediaType, MultivaluedMap<String,String> headers, byte[] cached, int expires, String etag, String lastModified)Constructors in org.jboss.resteasy.client.jaxrs.cache with parameters of type MultivaluedMap Constructor Description CacheEntry(String key, MultivaluedMap<String,String> headers, byte[] cached, int expires, String etag, String lastModified, MediaType mediaType) -
Uses of MultivaluedMap in org.jboss.resteasy.client.jaxrs.engines
Methods in org.jboss.resteasy.client.jaxrs.engines that return MultivaluedMap Modifier and Type Method Description protected MultivaluedMap<String,String>URLConnectionEngine. getHeaders(HttpURLConnection connection)Create map with response headers. -
Uses of MultivaluedMap in org.jboss.resteasy.client.jaxrs.internal
Methods in org.jboss.resteasy.client.jaxrs.internal that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>ClientRequestHeaders. asMap()MultivaluedMap<String,Object>ClientRequestContextImpl. getHeaders()MultivaluedMap<String,String>ClientResponseContextImpl. getHeaders()MultivaluedMap<String,String>ClientRequestContextImpl. getStringHeaders()Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type MultivaluedMap Modifier and Type Method Description Invocation.BuilderClientInvocationBuilder. headers(MultivaluedMap<String,Object> headers)ResteasyWebTargetClientWebTarget. queryParams(MultivaluedMap<String,Object> parameters)ResteasyWebTargetClientWebTarget. queryParamsNoTemplate(MultivaluedMap<String,Object> parameters)voidClientRequestHeaders. setHeaders(MultivaluedMap<String,Object> newHeaders)voidClientResponse. setHeaders(MultivaluedMap<String,String> headers) -
Uses of MultivaluedMap in org.jboss.resteasy.core
Classes in org.jboss.resteasy.core that implement MultivaluedMap Modifier and Type Class Description classHeaders<V> -
Uses of MultivaluedMap in org.jboss.resteasy.core.interception.jaxrs
Fields in org.jboss.resteasy.core.interception.jaxrs declared as MultivaluedMap Modifier and Type Field Description protected MultivaluedMap<String,String>AbstractReaderInterceptorContext. headersprotected MultivaluedMap<String,Object>AbstractWriterInterceptorContext. headersMethods in org.jboss.resteasy.core.interception.jaxrs that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>AbstractReaderInterceptorContext. getHeaders()MultivaluedMap<String,Object>AbstractWriterInterceptorContext. getHeaders()MultivaluedMap<String,Object>ContainerResponseContextImpl. getHeaders()MultivaluedMap<String,String>PreMatchContainerRequestContext. getHeaders()MultivaluedMap<String,String>ContainerResponseContextImpl. getStringHeaders() -
Uses of MultivaluedMap in org.jboss.resteasy.core.messagebody
Methods in org.jboss.resteasy.core.messagebody with parameters of type MultivaluedMap Modifier and Type Method Description default CompletionStage<Void>AsyncBufferedMessageBodyWriter. asyncWriteTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)<T> TReaderUtility. doRead(Class<T> type, Type genericType, MediaType mediaType, MultivaluedMap<String,String> requestHeaders, InputStream is)Deprecated.<T> TReaderUtility. doRead(Class<T> type, Type genericType, MediaType mediaType, Annotation[] annotations, MultivaluedMap<String,String> requestHeaders, InputStream inputStream)Deprecated.voidWriterUtility. doWrite(Object toOutput, Class type, Type genericType, MediaType mediaType, MultivaluedMap<String,Object> requestHeaders, OutputStream os)Deprecated.voidWriterUtility. doWrite(Object toOutput, Class type, Type genericType, MediaType mediaType, Annotation[] annotations, MultivaluedMap<String,Object> requestHeaders, OutputStream outputStream)Deprecated. -
Uses of MultivaluedMap in org.jboss.resteasy.core.registry
Fields in org.jboss.resteasy.core.registry declared as MultivaluedMap Modifier and Type Field Description protected MultivaluedMap<String,MethodExpression>RootNode. boundedMethods in org.jboss.resteasy.core.registry that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,ResourceInvoker>RootNode. getBounded() -
Uses of MultivaluedMap in org.jboss.resteasy.mock
Methods in org.jboss.resteasy.mock that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>MockHttpRequest. getMutableHeaders()MultivaluedMap<String,Object>MockHttpResponse. getOutputHeaders() -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers
Methods in org.jboss.resteasy.plugins.providers that return MultivaluedMap Modifier and Type Method Description static MultivaluedMap<String,String>FormUrlEncodedProvider. parseForm(InputStream entityStream, String charset)MultivaluedMapFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultivaluedMapServerFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Methods in org.jboss.resteasy.plugins.providers with parameters of type MultivaluedMap Modifier and Type Method Description CompletionStage<Void>AsyncStreamingOutputProvider. asyncWriteTo(AsyncStreamingOutput streamingOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>ByteArrayProvider. asyncWriteTo(byte[] bytes, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>DataSourceProvider. asyncWriteTo(DataSource dataSource, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>DefaultBooleanWriter. asyncWriteTo(Boolean t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>DefaultNumberWriter. asyncWriteTo(Number n, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>DefaultTextPlain. asyncWriteTo(Object o, Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>FileProvider. asyncWriteTo(File uploadFile, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>FileRangeWriter. asyncWriteTo(FileRange fileRange, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>FormUrlEncodedProvider. asyncWriteTo(MultivaluedMap data, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>IIOImageProvider. asyncWriteTo(IIOImage t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>InputStreamProvider. asyncWriteTo(InputStream inputStream, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>JaxrsFormProvider. asyncWriteTo(Form form, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>StringTextStar. asyncWriteTo(String o, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)longFormUrlEncodedProvider. getSize(MultivaluedMap stringStringMultivaluedMap, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType)byte[]ByteArrayProvider. readFrom(Class<byte[]> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)DataSourceDataSourceProvider. readFrom(Class<DataSource> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Read a type from theInputStream.ObjectDefaultTextPlain. readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, InputStream entityStream)DocumentDocumentProvider. readFrom(Class<Document> clazz, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream input)FileFileProvider. readFrom(Class<File> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultivaluedMapFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)IIOImageIIOImageProvider. readFrom(Class<IIOImage> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Read a type from theInputStream.InputStreamInputStreamProvider. readFrom(Class<InputStream> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)FormJaxrsFormProvider. readFrom(Class<Form> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)FormJaxrsServerFormUrlEncodedProvider. readFrom(Class<Form> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ReaderReaderProvider. readFrom(Class<Reader> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultivaluedMapServerFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)SourceSourceProvider. readFrom(Class<Source> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)StringStringTextStar. readFrom(Class<String> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidAsyncStreamingOutputProvider. writeTo(AsyncStreamingOutput streamingOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidByteArrayProvider. writeTo(byte[] bytes, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidDataSourceProvider. writeTo(DataSource dataSource, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Write a type to an HTTP message.voidDefaultBooleanWriter. writeTo(Boolean t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidDefaultNumberWriter. writeTo(Number n, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidDefaultTextPlain. writeTo(Object o, Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, OutputStream entityStream)voidDocumentProvider. writeTo(Document document, Class<?> clazz, Type type, Annotation[] annotation, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream output)voidFileProvider. writeTo(File uploadFile, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidFileRangeWriter. writeTo(FileRange fileRange, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidFormUrlEncodedProvider. writeTo(MultivaluedMap data, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidIIOImageProvider. writeTo(IIOImage t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Write a type to an HTTP message.voidInputStreamProvider. writeTo(InputStream inputStream, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidJaxrsFormProvider. writeTo(Form form, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidReaderProvider. writeTo(Reader inputStream, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidSourceProvider. writeTo(Source source, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidStreamingOutputProvider. writeTo(StreamingOutput streamingOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidStringTextStar. writeTo(String o, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Method parameters in org.jboss.resteasy.plugins.providers with type arguments of type MultivaluedMap Modifier and Type Method Description MultivaluedMapFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultivaluedMapServerFormUrlEncodedProvider. readFrom(Class<MultivaluedMap> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.atom
Methods in org.jboss.resteasy.plugins.providers.atom with parameters of type MultivaluedMap Modifier and Type Method Description EntryAtomEntryProvider. readFrom(Class<Entry> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)FeedAtomFeedProvider. readFrom(Class<Feed> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidAtomEntryProvider. writeTo(Entry entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidAtomFeedProvider. writeTo(Feed feed, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.jackson
Methods in org.jboss.resteasy.plugins.providers.jackson with parameters of type MultivaluedMap Modifier and Type Method Description ObjectResteasyJackson2Provider. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidResteasyJackson2Provider. writeTo(Object value, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.jaxb
Methods in org.jboss.resteasy.plugins.providers.jaxb with parameters of type MultivaluedMap Modifier and Type Method Description CompletionStage<Void>JAXBElementProvider. asyncWriteTo(JAXBElement<?> t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream outputStream)TAbstractJAXBProvider. readFrom(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectCollectionProvider. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)JAXBElement<?>JAXBElementProvider. readFrom(Class<JAXBElement<?>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectJAXBXmlTypeProvider. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectMapProvider. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidAbstractJAXBProvider. writeTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream outputStream)voidCollectionProvider. writeTo(Object entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidJAXBElementProvider. writeTo(JAXBElement<?> t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream outputStream)voidJAXBXmlTypeProvider. writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMapProvider. writeTo(Object target, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.jsonp
Methods in org.jboss.resteasy.plugins.providers.jsonp with parameters of type MultivaluedMap Modifier and Type Method Description JsonArrayJsonArrayProvider. readFrom(Class<JsonArray> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)JsonObjectJsonObjectProvider. readFrom(Class<JsonObject> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)JsonStructureJsonStructureProvider. readFrom(Class<JsonStructure> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)JsonValueJsonValueProvider. readFrom(Class<JsonValue> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidJsonArrayProvider. writeTo(JsonArray jsonValues, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidJsonObjectProvider. writeTo(JsonObject jsonObject, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidJsonStructureProvider. writeTo(JsonStructure jsonStructure, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidJsonValueProvider. writeTo(JsonValue jsonValue, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.multipart
Methods in org.jboss.resteasy.plugins.providers.multipart that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>InputPart. getHeaders()MultivaluedMap<String,String>MultipartInputImpl.PartImpl. getHeaders()MultivaluedMap<String,Object>OutputPart. getHeaders()Methods in org.jboss.resteasy.plugins.providers.multipart with parameters of type MultivaluedMap Modifier and Type Method Description protected CompletionStage<Void>AbstractMultipartWriter. asyncWrite(MultipartOutput multipartOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)protected CompletionStage<Void>AbstractMultipartWriter. asyncWrite(MultipartOutput multipartOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream, Annotation[] annotations)protected CompletionStage<Void>AbstractMultipartWriter. asyncWritePart(AsyncOutputStream entityStream, byte[] boundaryBytes, OutputPart part, MultivaluedMap<String,Object> headers)protected CompletionStage<Void>AbstractMultipartWriter. asyncWritePart(AsyncOutputStream entityStream, byte[] boundaryBytes, OutputPart part, MultivaluedMap<String,Object> headers, Annotation[] annotations)protected CompletionStage<Void>AbstractMultipartRelatedWriter. asyncWriteRelated(MultipartRelatedOutput multipartRelatedOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream, Annotation[] annotations)CompletionStage<Void>ListMultipartWriter. asyncWriteTo(List<Object> list, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MapMultipartFormDataWriter. asyncWriteTo(Map<String,Object> map, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MimeMultipartProvider. asyncWriteTo(MimeMultipart mimeMultipart, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MultipartEntityPartWriter. asyncWriteTo(List<EntityPart> entityParts, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MultipartFormAnnotationWriter. asyncWriteTo(Object obj, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MultipartFormDataWriter. asyncWriteTo(MultipartFormDataOutput multipartFormDataOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MultipartRelatedWriter. asyncWriteTo(MultipartRelatedOutput multipartRelatedOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>MultipartWriter. asyncWriteTo(MultipartOutput multipartOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)CompletionStage<Void>XopWithMultipartRelatedWriter. asyncWriteTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)EntityPart.BuilderResteasyEntityPartBuilder. headers(MultivaluedMap<String,String> newHeaders)List<?>ListMultipartReader. readFrom(Class<List<?>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Map<?,?>MapMultipartFormDataReader. readFrom(Class<Map<?,?>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MimeMultipartMimeMultipartProvider. readFrom(Class<MimeMultipart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Read a type from theInputStream.List<EntityPart>MultipartEntityPartReader. readFrom(Class<List<EntityPart>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectMultipartFormAnnotationReader. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultipartFormDataInputMultipartFormDataReader. readFrom(Class<MultipartFormDataInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultipartInputMultipartReader. readFrom(Class<MultipartInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)MultipartRelatedInputMultipartRelatedReader. readFrom(Class<MultipartRelatedInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectXopWithMultipartRelatedJAXBProvider. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream, MultipartRelatedInput xopPackage)ObjectXopWithMultipartRelatedReader. readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)protected voidAbstractMultipartWriter. write(MultipartOutput multipartOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)protected voidAbstractMultipartWriter. write(MultipartOutput multipartOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream, Annotation[] annotations)protected voidAbstractMultipartWriter. writePart(OutputStream entityStream, byte[] boundaryBytes, OutputPart part, MultivaluedMap<String,Object> headers)protected voidAbstractMultipartWriter. writePart(OutputStream entityStream, byte[] boundaryBytes, OutputPart part, MultivaluedMap<String,Object> headers, Annotation[] annotations)protected voidAbstractMultipartRelatedWriter. writeRelated(MultipartRelatedOutput multipartRelatedOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream, Annotation[] annotations)voidListMultipartWriter. writeTo(List<Object> list, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMapMultipartFormDataWriter. writeTo(Map<String,Object> map, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMimeMultipartProvider. writeTo(MimeMultipart mimeMultipart, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Write a type to an HTTP message.voidMultipartEntityPartWriter. writeTo(List<EntityPart> entityParts, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMultipartFormAnnotationWriter. writeTo(Object obj, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMultipartFormDataWriter. writeTo(MultipartFormDataOutput multipartFormDataOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMultipartRelatedWriter. writeTo(MultipartRelatedOutput multipartRelatedOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidMultipartWriter. writeTo(MultipartOutput multipartOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)voidXopWithMultipartRelatedJAXBProvider. writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, MultipartRelatedOutput xopPackage)voidXopWithMultipartRelatedWriter. writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Constructors in org.jboss.resteasy.plugins.providers.multipart with parameters of type MultivaluedMap Constructor Description HeaderFlushedAsyncOutputStream(MultivaluedMap<String,Object> headers, AsyncOutputStream delegate)HeaderFlushedOutputStream(MultivaluedMap<String,Object> headers, OutputStream delegate) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.providers.sse
Methods in org.jboss.resteasy.plugins.providers.sse with parameters of type MultivaluedMap Modifier and Type Method Description CompletionStage<Void>SseEventProvider. asyncWriteTo(OutboundSseEvent event, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)SseEventInputImplSseEventProvider. readFrom(Class<SseEventInputImpl> cls, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidSseEventProvider. writeTo(OutboundSseEvent event, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)Constructors in org.jboss.resteasy.plugins.providers.sse with parameters of type MultivaluedMap Constructor Description SseEventInputImpl(Annotation[] annotations, MediaType streamType, MediaType elementType, MultivaluedMap<String,String> httpHeaders, InputStream inputStream) -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.server
Fields in org.jboss.resteasy.plugins.server declared as MultivaluedMap Modifier and Type Field Description protected MultivaluedMap<String,String>BaseHttpRequest. decodedFormParametersprotected MultivaluedMap<String,String>BaseHttpRequest. formParametersMethods in org.jboss.resteasy.plugins.server that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>BaseHttpRequest. getDecodedFormParameters()MultivaluedMap<String,String>BaseHttpRequest. getFormParameters() -
Uses of MultivaluedMap in org.jboss.resteasy.plugins.server.servlet
Classes in org.jboss.resteasy.plugins.server.servlet that implement MultivaluedMap Modifier and Type Class Description classHttpServletResponseHeadersFields in org.jboss.resteasy.plugins.server.servlet declared as MultivaluedMap Modifier and Type Field Description protected MultivaluedMap<String,Object>HttpServletResponseWrapper. outputHeadersMethods in org.jboss.resteasy.plugins.server.servlet that return MultivaluedMap Modifier and Type Method Description static MultivaluedMap<String,String>ServletUtil. extractRequestHeaders(HttpServletRequest request)MultivaluedMap<String,String>HttpServletInputMessage. getDecodedFormParameters()MultivaluedMap<String,String>HttpServletInputMessage. getFormParameters()MultivaluedMap<String,String>HttpServletInputMessage. getMutableHeaders()MultivaluedMap<String,Object>HttpServletResponseWrapper. getOutputHeaders()MultivaluedMap<String,String>HttpServletInputMessage. getPutDecodedFormParameters()MultivaluedMap<String,String>HttpServletInputMessage. getPutFormParameters()Methods in org.jboss.resteasy.plugins.server.servlet with parameters of type MultivaluedMap Modifier and Type Method Description booleanHttpServletResponseHeaders. equalsIgnoreValueOrder(MultivaluedMap<String,Object> otherMap)static List<MediaType>ServletUtil. extractAccepts(MultivaluedMap<String,String> requestHeaders)static List<String>ServletUtil. extractLanguages(MultivaluedMap<String,String> requestHeaders)protected booleanHttpServletInputMessage. mapEquals(Map<String,String[]> parameterMap, MultivaluedMap<String,String> queryMap) -
Uses of MultivaluedMap in org.jboss.resteasy.specimpl
Classes in org.jboss.resteasy.specimpl that implement MultivaluedMap Modifier and Type Class Description classMultivaluedMapImpl<K,V>classMultivaluedTreeMap<K,V>classUnmodifiableMultivaluedMap<K,V>Unmodifiable implementation ofMultivaluedMapinterfaceMethods in org.jboss.resteasy.specimpl with parameters of type MultivaluedMap Modifier and Type Method Description static <K,V>
voidMultivaluedTreeMap. addAll(MultivaluedMap<K,V> src, MultivaluedMap<K,V> dest)static <K,V>
MultivaluedTreeMap<K,V>MultivaluedTreeMap. clone(MultivaluedMap<K,V> src)static <K,V>
voidMultivaluedTreeMap. copy(MultivaluedMap<K,V> src, MultivaluedMap<K,V> dest)booleanMultivaluedMapImpl. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)booleanMultivaluedTreeMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)booleanUnmodifiableMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)Response.ResponseBuilderResponseBuilderImpl. replaceAll(MultivaluedMap<String,Object> headers)voidAbstractBuiltResponse. setMetadata(MultivaluedMap<String,Object> metadata)static StringMultivaluedTreeMap. toString(MultivaluedMap<?,?> map, String delimiter)Constructors in org.jboss.resteasy.specimpl with parameters of type MultivaluedMap Constructor Description ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders)ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders, boolean eagerlyInitializeEntrySet)ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders, Map<String,Cookie> cookies)ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders, Map<String,Cookie> cookies, boolean eagerlyInitializeEntrySet)UnmodifiableMultivaluedMap(MultivaluedMap<K,V> delegate)UnmodifiableMultivaluedMap(MultivaluedMap<K,V> delegate, boolean eagerlyInitializeEntrySet) -
Uses of MultivaluedMap in org.jboss.resteasy.spi
Methods in org.jboss.resteasy.spi that return MultivaluedMap Modifier and Type Method Description MultivaluedMap<String,String>HttpRequest. getDecodedFormParameters()MultivaluedMap<String,String>HttpRequest. getFormParameters()application/x-www-form-urlencoded parametersMultivaluedMap<String,Object>AsyncWriterInterceptorContext. getHeaders()Get mutable map of HTTP headers.MultivaluedMap<String,String>HttpRequest. getMutableHeaders()MultivaluedMap<String,Object>HttpResponse. getOutputHeaders()Methods in org.jboss.resteasy.spi with parameters of type MultivaluedMap Modifier and Type Method Description CompletionStage<Void>AsyncMessageBodyWriter. asyncWriteTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)Write a type to an HTTP message using async IO. -
Uses of MultivaluedMap in org.jboss.resteasy.tracing
Methods in org.jboss.resteasy.tracing with parameters of type MultivaluedMap Modifier and Type Method Description voidRESTEasyTracingLogger. flush(MultivaluedMap<String,Object> headers)Stores collected tracing messages to response HTTP header. -
Uses of MultivaluedMap in org.jboss.resteasy.util
Classes in org.jboss.resteasy.util that implement MultivaluedMap Modifier and Type Class Description classCaseInsensitiveMap<V>classDelegatingMultivaluedMap<K,V>MultivaluedMapimplementation that delegates to another instance.classPrefixedMultivaluedMap<V>MultivaluedMapimplementation that wraps another instance and only returns values that are prefixed with the givenPrefixedMultivaluedMap.prefixWithDot.Methods in org.jboss.resteasy.util that return MultivaluedMap Modifier and Type Method Description static MultivaluedMap<String,String>Encode. decode(MultivaluedMap<String,String> map)decode an encoded mapstatic MultivaluedMap<String,String>Encode. decode(MultivaluedMap<String,String> map, String charset)decode an encoded mapstatic MultivaluedMap<String,String>Encode. encode(MultivaluedMap<String,String> map)MultivaluedMap<String,String>DelegatingHttpRequest. getDecodedFormParameters()MultivaluedMap<String,String>PrefixedFormFieldsHttpRequest. getDecodedFormParameters()MultivaluedMap<String,String>DelegatingHttpRequest. getFormParameters()MultivaluedMap<String,String>DelegatingHttpRequest. getMutableHeaders()Methods in org.jboss.resteasy.util with parameters of type MultivaluedMap Modifier and Type Method Description static voidNoContent. contentLengthCheck(MultivaluedMap<String,String> httpHeaders)static MultivaluedMap<String,String>Encode. decode(MultivaluedMap<String,String> map)decode an encoded mapstatic MultivaluedMap<String,String>Encode. decode(MultivaluedMap<String,String> map, String charset)decode an encoded mapstatic MultivaluedMap<String,String>Encode. encode(MultivaluedMap<String,String> map)booleanDelegatingMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)static booleanNoContent. isContentLengthZero(MultivaluedMap<String,String> httpHeaders)static InputStreamNoContent. noContentCheck(MultivaluedMap<String,String> httpHeaders, InputStream is)static voidHeaderHelper. setAllow(MultivaluedMap<String,Object> headers, String[] methods)static voidHeaderHelper. setAllow(MultivaluedMap<String,Object> headers, Set<String> methods)Constructors in org.jboss.resteasy.util with parameters of type MultivaluedMap Constructor Description DelegatingMultivaluedMap(MultivaluedMap<K,V> delegate)PrefixedMultivaluedMap(String prefix, MultivaluedMap<String,V> delegate)Constructor setting the prefix and the delegate.
-