Package org.springframework.webflow.core.collection

Examples of org.springframework.webflow.core.collection.AttributeMapBindingEvent


  /**
   * Create a attribute map binding event for given HTTP session binding event.
   */
  private AttributeMapBindingEvent getContextBindingEvent(HttpSessionBindingEvent event) {
    return new AttributeMapBindingEvent(new LocalAttributeMap(sessionMap), event.getName(), listener);
  }
View Full Code Here


  /**
   * Create a attribute map binding event for given HTTP session binding event.
   */
  private AttributeMapBindingEvent getContextBindingEvent(HttpSessionBindingEvent event) {
    return new AttributeMapBindingEvent(new LocalAttributeMap<Object>(sessionMap), event.getName(), listener);
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.core.collection.AttributeMapBindingEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.