Class AttributeMapBindingEvent

java.lang.Object
java.util.EventObject
org.springframework.webflow.core.collection.AttributeMapBindingEvent
All Implemented Interfaces:
Serializable

public class AttributeMapBindingEvent extends EventObject
Holder for information about the binding or unbinding event in an AttributeMap.
Author:
Ben Hale
See Also:
  • Constructor Details

    • AttributeMapBindingEvent

      public AttributeMapBindingEvent(AttributeMap<?> source, String attributeName, Object attributeValue)
      Creates an event for map binding that contains information about the event.
      Parameters:
      source - the source map that this attribute was bound in
      attributeName - the name that this attribute was bound with
      attributeValue - the attribute
  • Method Details

    • getAttributeName

      public String getAttributeName()
      Returns the name the attribute was bound with.
    • getAttributeValue

      public Object getAttributeValue()
      Returns the value of the attribute.