Package org.springframework.webflow.validation

Examples of org.springframework.webflow.validation.ValidationHintResolver


    helper.validate();
  }

  private ValidationHintResolver getHintResolver(RequestContext requestContext) {

    ValidationHintResolver hintResolver = (ValidationHintResolver) requestContext.getActiveFlow()
        .getAttributes().get(FlowModelFlowBuilder.VALIDATION_HINT_RESOLVER_FLOW_ATTR);

    return (hintResolver != null ? hintResolver : new BeanValidationHintResolver());
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.validation.ValidationHintResolver

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.