org.springframework.webflow.core.collection |
Core element collection types used within Spring Web Flow.
This packages defines two primary collection flavors:
- AttributeMap - for accessing 'attributes' that have string keys and object values.
- ParameterMap - for accessing 'parameters' that have string keys and string values.
Each map is java.util.Map adaptable.
|
Java Source File Name | Type | Comment |
AttributeMap.java | Interface | An immutable interface for accessing attributes in a backing map with string keys. |
AttributeMapBindingEvent.java | Class | Holder for information about the binding or unbinding event in an
AttributeMap . |
AttributeMapBindingListener.java | Interface | Causes an object to be notified when it is bound or unbound from
an
AttributeMap . |
CollectionUtils.java | Class | A utility class for working with attribute and parameter collections used by
Spring Web FLow. |
LocalAttributeMap.java | Class | A generic, mutable attribute map with string keys. |
LocalParameterMap.java | Class | An immutable parameter map storing String-keyed, String-valued parameters
in a backing
Map implementation. |
LocalSharedAttributeMap.java | Class | An attribute map that exposes a mutex that application code can synchronize
on. |
MutableAttributeMap.java | Interface | An interface for accessing and modifying attributes in a backing map with
string keys. |
ParameterMap.java | Interface | An interface for accessing parameters in a backing map. |
SharedAttributeMap.java | Interface | An interface to be implemented by mutable attribute maps accessed by
multiple threads that need to be synchronized. |