Uses of Class
org.springframework.ui.ConcurrentModel
Package
Description
Generic support for UI layer concepts.
Support classes for handling validation results.
-
Uses of ConcurrentModel in org.springframework.ui
Modifier and TypeMethodDescriptionConcurrentModel.addAllAttributes
(Collection<?> attributeValues) Copy all attributes in the suppliedCollection
into thisMap
, using attribute name generation for each element.ConcurrentModel.addAllAttributes
(Map<String, ?> attributes) Copy all attributes in the suppliedMap
into thisMap
.ConcurrentModel.addAttribute
(Object attributeValue) Add the supplied attribute to thisMap
using agenerated name
.ConcurrentModel.addAttribute
(String attributeName, Object attributeValue) Add the supplied attribute under the supplied name.ConcurrentModel.mergeAttributes
(Map<String, ?> attributes) Copy all attributes in the suppliedMap
into thisMap
, with existing objects of the same name taking precedence (i.e. -
Uses of ConcurrentModel in org.springframework.validation.support
Modifier and TypeClassDescriptionclass
Subclass ofConcurrentModel
that automatically removes theBindingResult
object when its corresponding target attribute is replaced through regularMap
operations.