Constructor and Description |
---|
Headers()
Constructs a
Headers object that is case-insensitive for header names. |
Modifier and Type | Method and Description |
---|---|
void |
add(Header header)
An add method to add a particular
Header instance. |
void |
add(String key,
Object value)
A script compatible add method that will accept a
Header , String , Collection<String>
and String[] value. |
void |
addAll(Map<? extends String,? extends Object> map)
A script compatible addAll method that will accept a
Header , String , Collection<String>
and String[] value. |
Map<String,Header> |
asMapOfHeaders()
The
Headers class extends Map<String, Object> to support flexible parameters in scripting. |
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Map<String,List<String>> |
copyAsMultiMapOfStrings()
Returns a copy of these headers as a multi-valued map of strings.
|
Set<Map.Entry<String,Object>> |
entrySet() |
<H extends Header> |
get(Class<H> headerType)
Returns the specified
Header or {code null} if the header is not included in the message. |
Header |
get(Object key)
Rich-type friendly get method.
|
List<String> |
getAll(String key)
Gets all the values of the header, or an empty list if the header doesn't exist.
|
String |
getFirst(Class<? extends Header> key)
Gets the first value of the header, or null if the header does not exist.
|
String |
getFirst(String key)
Gets the first value of the header, or null if the header does not exist.
|
boolean |
isEmpty() |
Set<String> |
keySet() |
Header |
put(Header header)
A put method to add a particular
Header instance. |
Header |
put(String key,
Object value)
A script compatible put method that will accept a
Header , String , Collection<String>
and String[] value. |
void |
putAll(Map<? extends String,? extends Object> m)
A script compatible putAll method that will accept
Header , String , Collection<String>
and String[] values. |
Header |
remove(Object key)
Rich-type friendly remove method.
|
int |
size() |
Collection<Object> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
public Headers()
Headers
object that is case-insensitive for header names.public String getFirst(String key)
key
- The name of the header.public String getFirst(Class<? extends Header> key)
key
- The name of the header.public List<String> getAll(String key)
key
- The name of the header.public <H extends Header> H get(Class<H> headerType) throws MalformedHeaderException
Header
or {code null} if the header is not included in the message.H
- The type of header.headerType
- The type of header.MalformedHeaderException
- When the header was not well formed, and so could not be parsed as
its richly-typed class.public void putAll(Map<? extends String,? extends Object> m)
Header
, String
, Collection<String>
and String[]
values.public Header put(String key, Object value)
Header
, String
, Collection<String>
and String[]
value.public Header remove(Object key)
Header
object for the given header name.public Header put(Header header)
Header
instance. Will overwrite any existing value for this
header name.header
- The header instance.Header
value for the header with the same name, or null.public void add(Header header)
Header
instance. Existing values for the header will be added to.header
- The header instance.public void add(String key, Object value)
Header
, String
, Collection<String>
and String[]
value. Existing values for the header will be added to.key
- The name of the header.value
- A Header
, String
, Collection<String>
or String[]
.public void addAll(Map<? extends String,? extends Object> map)
Header
, String
, Collection<String>
and String[]
value. Existing values for the headers will be added to.map
- A map of header names to values.public boolean containsKey(Object key)
containsKey
in interface Map<String,Object>
public boolean containsValue(Object value)
containsValue
in interface Map<String,Object>
public Map<String,Header> asMapOfHeaders()
Headers
class extends Map<String, Object>
to support flexible parameters in scripting. This
method allows access to the underlying Map<String, Header>
.Header
objects.public Map<String,List<String>> copyAsMultiMapOfStrings()
Copyright © 2010-2018, ForgeRock All Rights Reserved.