public class RedirectAttributesModelMap extends ModelMap implements RedirectAttributes
ModelMap implementation of RedirectAttributes that formats
values as Strings using a DataBinder. Also provides a place to store
flash attributes so they can survive a redirect without the need to be
embedded in the redirect URL.AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| Constructor and Description |
|---|
RedirectAttributesModelMap()
Default constructor without a DataBinder.
|
RedirectAttributesModelMap(DataBinder dataBinder)
Class constructor.
|
| Modifier and Type | Method and Description |
|---|---|
RedirectAttributesModelMap |
addAllAttributes(Collection<?> attributeValues)
Copy all attributes in the supplied
Collection into this
Map, using attribute name generation for each element. |
RedirectAttributesModelMap |
addAllAttributes(Map<String,?> attributes)
Copy all attributes in the supplied
Map into this Map. |
RedirectAttributesModelMap |
addAttribute(Object attributeValue)
Add the supplied attribute to this
Map using a
generated name. |
RedirectAttributesModelMap |
addAttribute(String attributeName,
Object attributeValue)
Add the supplied attribute under the supplied name.
|
RedirectAttributes |
addFlashAttribute(Object attributeValue)
Add the given flash storage using a
generated name. |
RedirectAttributes |
addFlashAttribute(String attributeName,
Object attributeValue)
Add the given flash attribute.
|
Map<String,Object> |
asMap()
Return the current set of model attributes as a Map.
|
Map<String,?> |
getFlashAttributes()
Return the attributes candidate for flash storage or an empty Map.
|
RedirectAttributesModelMap |
mergeAttributes(Map<String,?> attributes)
Copy all attributes in the supplied
Map into this Map,
with existing objects of the same name taking precedence (i.e. |
Object |
put(String key,
Object value) |
void |
putAll(Map<? extends String,? extends Object> map) |
containsAttributeclear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, valuesclone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, putIfAbsent, remove, remove, replace, replace, sizeequals, hashCode, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAttributecompute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, putIfAbsent, remove, remove, replace, replace, sizepublic RedirectAttributesModelMap(DataBinder dataBinder)
dataBinder - used to format attribute values as Strings.public RedirectAttributesModelMap()
AbstractMap.toString().public Map<String,?> getFlashAttributes()
getFlashAttributes in interface RedirectAttributespublic RedirectAttributesModelMap addAttribute(String attributeName, Object attributeValue)
Formats the attribute value as a String before adding it.
addAttribute in interface ModeladdAttribute in interface RedirectAttributesaddAttribute in class ModelMapattributeName - the name of the model attribute (never null)attributeValue - the model attribute value (can be null)public RedirectAttributesModelMap addAttribute(Object attributeValue)
Map using a
generated name.
Collections are not added to
the model when using this method because we cannot correctly determine
the true convention name. View code should check for null rather
than for empty collections as is already done by JSTL tags.
Formats the attribute value as a String before adding it.
addAttribute in interface ModeladdAttribute in interface RedirectAttributesaddAttribute in class ModelMapattributeValue - the model attribute value (never null)public RedirectAttributesModelMap addAllAttributes(Collection<?> attributeValues)
Collection into this
Map, using attribute name generation for each element.
Each attribute value is formatted as a String before being added.
addAllAttributes in interface ModeladdAllAttributes in interface RedirectAttributesaddAllAttributes in class ModelMapModelMap.addAttribute(Object)public RedirectAttributesModelMap addAllAttributes(Map<String,?> attributes)
Map into this Map.
Each attribute value is formatted as a String before being added.
addAllAttributes in interface ModeladdAllAttributes in class ModelMapModelMap.addAttribute(String, Object)public RedirectAttributesModelMap mergeAttributes(Map<String,?> attributes)
Map into this Map,
with existing objects of the same name taking precedence (i.e. not getting
replaced).
Each attribute value is formatted as a String before being merged.
mergeAttributes in interface ModelmergeAttributes in interface RedirectAttributesmergeAttributes in class ModelMappublic Map<String,Object> asMap()
Modelpublic Object put(String key, Object value)
The value is formatted as a String before being added.
public void putAll(Map<? extends String,? extends Object> map)
Each value is formatted as a String before being added.
public RedirectAttributes addFlashAttribute(String attributeName, Object attributeValue)
RedirectAttributesaddFlashAttribute in interface RedirectAttributesattributeName - the attribute name; never nullattributeValue - the attribute value; may be nullpublic RedirectAttributes addFlashAttribute(Object attributeValue)
RedirectAttributesgenerated name.addFlashAttribute in interface RedirectAttributesattributeValue - the flash attribute value; never null