Package org.springframework.http.support
Class HttpComponentsHeadersAdapter
java.lang.Object
org.springframework.http.support.HttpComponentsHeadersAdapter
public final class HttpComponentsHeadersAdapter
extends Object
implements MultiValueMap<String,String> 
MultiValueMap implementation for wrapping Apache HttpComponents
 HttpClient headers.- Since:
- 6.1
- Author:
- Rossen Stoyanchev, Simon Baslé
- 
Nested Class Summary
- 
Constructor SummaryConstructorsConstructorDescriptionHttpComponentsHeadersAdapter(org.apache.hc.core5.http.HttpMessage message) Create a newHttpComponentsHeadersAdapterbased on the givenHttpMessage.
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd the given single value to the current list of values for the given key.voidAdd all the values of the given list to the current list of values for the given key.voidaddAll(MultiValueMap<String, String> values) Add all the values of the givenMultiValueMapto the current values.voidclear()booleancontainsKey(Object key) booleancontainsValue(Object value) entrySet()Return the first value for the given key.booleanisEmpty()keySet()voidvoidSet the given single value under the given key.voidSet the given values under.intsize()Return aMapwith the first values contained in thisMultiValueMap.toString()values()Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAllMethods inherited from interface org.springframework.util.MultiValueMapaddIfAbsent, asSingleValueMap
- 
Constructor Details- 
HttpComponentsHeadersAdapterpublic HttpComponentsHeadersAdapter(org.apache.hc.core5.http.HttpMessage message) Create a newHttpComponentsHeadersAdapterbased on the givenHttpMessage.
 
- 
- 
Method Details- 
getFirstDescription copied from interface:MultiValueMapReturn the first value for the given key.- Specified by:
- getFirstin interface- MultiValueMap<String,- String> 
- Parameters:
- key- the key
- Returns:
- the first value for the specified key, or nullif none
 
- 
addDescription copied from interface:MultiValueMapAdd the given single value to the current list of values for the given key.- Specified by:
- addin interface- MultiValueMap<String,- String> 
- Parameters:
- key- the key
- value- the value to be added
 
- 
addAllDescription copied from interface:MultiValueMapAdd all the values of the given list to the current list of values for the given key.- Specified by:
- addAllin interface- MultiValueMap<String,- String> 
- Parameters:
- key- they key
- values- the values to be added
 
- 
addAllDescription copied from interface:MultiValueMapAdd all the values of the givenMultiValueMapto the current values.- Specified by:
- addAllin interface- MultiValueMap<String,- String> 
- Parameters:
- values- the values to be added
 
- 
setDescription copied from interface:MultiValueMapSet the given single value under the given key.- Specified by:
- setin interface- MultiValueMap<String,- String> 
- Parameters:
- key- the key
- value- the value to set
 
- 
setAllDescription copied from interface:MultiValueMapSet the given values under.- Specified by:
- setAllin interface- MultiValueMap<String,- String> 
- Parameters:
- values- the values.
 
- 
toSingleValueMapDescription copied from interface:MultiValueMapReturn aMapwith the first values contained in thisMultiValueMap. The difference between this method andMultiValueMap.asSingleValueMap()is that this method returns a copy of the entries of this map, whereas the latter returns a view.- Specified by:
- toSingleValueMapin interface- MultiValueMap<String,- String> 
- Returns:
- a single value representation of this map
 
- 
sizepublic int size()
- 
isEmptypublic boolean isEmpty()
- 
containsKey- Specified by:
- containsKeyin interface- Map<String,- List<String>> 
 
- 
containsValue- Specified by:
- containsValuein interface- Map<String,- List<String>> 
 
- 
get
- 
put
- 
remove
- 
putAll
- 
clearpublic void clear()
- 
keySet
- 
values
- 
entrySet
- 
toString
 
-