Package org.hibernate.validator.util.scriptengine

Examples of org.hibernate.validator.util.scriptengine.ScriptEvaluator


  }

  public boolean isValid(Object value, ConstraintValidatorContext constraintValidatorContext) {

    Object evaluationResult;
    ScriptEvaluator scriptEvaluator;

    try {
      ScriptEvaluatorFactory evaluatorFactory = ScriptEvaluatorFactory.getInstance();
      scriptEvaluator = evaluatorFactory.getScriptEvaluatorByLanguageName( languageName );
    }
    catch ( ScriptException e ) {
      throw new ConstraintDeclarationException( e );
    }

    try {
      evaluationResult = scriptEvaluator.evaluate( script, value, alias );
    }
    catch ( ScriptException e ) {
      throw new ConstraintDeclarationException(
          "Error during execution of script \"" + script + "\" occurred.", e
      );
View Full Code Here

TOP

Related Classes of org.hibernate.validator.util.scriptengine.ScriptEvaluator

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.