Package org.springframework.webflow.core.collection


package org.springframework.webflow.core.collection
Core element collection types used within Spring Web Flow.

This packages defines two primary collection flavors:

  1. AttributeMap - for accessing 'attributes' that have string keys and object values.
  2. ParameterMap - for accessing 'parameters' that have string keys and string values.

Each map is java.util.Map adaptable.

  • Class
    Description
    An immutable interface for accessing attributes in a backing map with string keys.
    Holder for information about the binding or unbinding event in an AttributeMap.
    Causes an object to be notified when it is bound or unbound from an AttributeMap.
    A utility class for working with attribute and parameter collections used by Spring Web FLow.
    A generic, mutable attribute map with string keys.
    An immutable parameter map storing String-keyed, String-valued parameters in a backing Map implementation.
    An attribute map that exposes a mutex that application code can synchronize on.
    An interface for accessing and modifying attributes in a backing map with string keys.
    An interface for accessing parameters in a backing map.
    An interface to be implemented by mutable attribute maps accessed by multiple threads that need to be synchronized.