Uses of Class
org.springframework.ui.ConcurrentModel
Packages that use ConcurrentModel
Package
Description
Generic support for UI layer concepts.
Support classes for handling validation results.
-
Uses of ConcurrentModel in org.springframework.ui
Methods in org.springframework.ui that return ConcurrentModelModifier and TypeMethodDescriptionConcurrentModel.addAllAttributes
(@Nullable Collection<?> attributeValues) Copy all attributes in the suppliedCollection
into thisMap
, using attribute name generation for each element.ConcurrentModel.addAllAttributes
(@Nullable 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, @Nullable Object attributeValue) Add the supplied attribute under the supplied name.ConcurrentModel.mergeAttributes
(@Nullable 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
Subclasses of ConcurrentModel in org.springframework.validation.supportModifier and TypeClassDescriptionclass
Subclass ofConcurrentModel
that automatically removes theBindingResult
object when its corresponding target attribute is replaced through regularMap
operations.