Package org.springframework.rules.reporting

Examples of org.springframework.rules.reporting.MessageTranslatorFactory


   */
  public RulesValidator(FormModel formModel, RulesSource rulesSource) {
    this.formModel = formModel;
    this.rulesSource = rulesSource;
    validationResultsCollector = new BeanValidationResultsCollector(new FormModelPropertyAccessStrategy(formModel));
    MessageTranslatorFactory factory = (MessageTranslatorFactory) ApplicationServicesLocator.services().getService(
        MessageTranslatorFactory.class);
    messageTranslator = factory.createTranslator(this);
  }
View Full Code Here

TOP

Related Classes of org.springframework.rules.reporting.MessageTranslatorFactory

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.