Examples of FlowInputMappingException


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

Examples of org.springframework.webflow.engine.FlowInputMappingException

  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
Copyright © 2018 www.massapi.com. 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.