Uses of Class
org.springframework.ui.ConcurrentModel
Packages that use ConcurrentModel Package Description org.springframework.ui Generic support for UI layer concepts.org.springframework.validation.support Support classes for handling validation results.Uses of ConcurrentModel in org.springframework.ui
Methods in org.springframework.ui that return ConcurrentModel Modifier and Type Method Description ConcurrentModelConcurrentModel. addAllAttributes(Collection<?> attributeValues)Copy all attributes in the suppliedCollectioninto thisMap, using attribute name generation for each element.ConcurrentModelConcurrentModel. addAllAttributes(Map<String,?> attributes)Copy all attributes in the suppliedMapinto thisMap.ConcurrentModelConcurrentModel. addAttribute(Object attributeValue)Add the supplied attribute to thisMapusing agenerated name.ConcurrentModelConcurrentModel. addAttribute(String attributeName, Object attributeValue)Add the supplied attribute under the supplied name.ConcurrentModelConcurrentModel. mergeAttributes(Map<String,?> attributes)Copy all attributes in the suppliedMapinto 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.support Modifier and Type Class Description classBindingAwareConcurrentModelSubclass ofConcurrentModelthat automatically removes theBindingResultobject when its corresponding target attribute is replaced through regularMapoperations.