Package org.springframework.webflow.engine

Examples of org.springframework.webflow.engine.FlowOutputMappingException


  public void mapSubflowOutput(AttributeMap output, RequestContext context) {
    if (outputMapper != null && output != null) {
      MappingResults results = outputMapper.map(output, context);
      if (results != null && results.hasErrorResults()) {
        throw new FlowOutputMappingException(context.getActiveFlow().getId(),
            context.getCurrentState().getId(), results);
      }
    }
  }
View Full Code Here


  public void mapSubflowOutput(AttributeMap<?> output, RequestContext context) {
    if (outputMapper != null && output != null) {
      MappingResults results = outputMapper.map(output, context);
      if (results != null && results.hasErrorResults()) {
        throw new FlowOutputMappingException(context.getActiveFlow().getId(),
            context.getCurrentState().getId(), results);
      }
    }
  }
View Full Code Here

TOP

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

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.