Class BinderConfiguration

java.lang.Object
org.springframework.webflow.engine.builder.BinderConfiguration

public class BinderConfiguration extends Object
Contains the information needed to bind model to a view. This information consists of one or more bindings that connect properties of the model to UI elements of the view.
Author:
Keith Donald
See Also:
  • Constructor Details

    • BinderConfiguration

      public BinderConfiguration()
  • Method Details

    • addBinding

      public void addBinding(BinderConfiguration.Binding binding)
      Adds a new binding to this binding configuration.
      Parameters:
      binding - the binding
    • getBindings

      public Set<BinderConfiguration.Binding> getBindings()
      Returns the set of bindings associated with this binding configuration.
    • getBinding

      public BinderConfiguration.Binding getBinding(String name)
      Gets the binding with the specified name, or returns null if no such binding is found.
      Parameters:
      name - the name of the binding.
      Returns:
      the binding
    • getConverterId

      public String getConverterId(String name)
      Gets the converterId for the binding with the specified name. Returns null if either a binding or a converterId for the given name is not found.
      Parameters:
      name - the name of the binding.
      Returns:
      the binding