Package org.springframework.webflow.engine

Examples of org.springframework.webflow.engine.FlowInputMappingException


  public MutableAttributeMap createSubflowInput(RequestContext context) {
    if (inputMapper != null) {
      LocalAttributeMap input = new LocalAttributeMap();
      MappingResults results = inputMapper.map(context, input);
      if (results != null && results.hasErrorResults()) {
        throw new FlowInputMappingException(context.getActiveFlow().getId(), context.getCurrentState().getId(),
            results);
      }
      return input;
    } else {
      return new LocalAttributeMap();
View Full Code Here


  public MutableAttributeMap<Object> createSubflowInput(RequestContext context) {
    if (inputMapper != null) {
      LocalAttributeMap<Object> input = new LocalAttributeMap<Object>();
      MappingResults results = inputMapper.map(context, input);
      if (results != null && results.hasErrorResults()) {
        throw new FlowInputMappingException(context.getActiveFlow().getId(), context.getCurrentState().getId(),
            results);
      }
      return input;
    } else {
      return new LocalAttributeMap<Object>();
View Full Code Here

TOP

Related Classes of org.springframework.webflow.engine.FlowInputMappingException

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.