Examples of ClassValidator


Examples of org.hibernate.validator.ClassValidator

    for ( PersistentClass persistentClazz : (Collection<PersistentClass>) classes.values() ) {
      //integrate the validate framework
      String className = persistentClazz.getClassName();
      if ( StringHelper.isNotEmpty( className ) ) {
        try {
          new ClassValidator( ReflectHelper.classForName( className ), null, null, null, reflectionManager )
                            .apply( persistentClazz );
        }
        catch (ClassNotFoundException e) {
          //swallow them
        }
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.