Package org.hibernate.validation.util

Examples of org.hibernate.validation.util.PropertyIterator


    }
    sanityCheckPropertyPath( propertyName );
    GroupChain groupChain = determineGroupExecutionOrder( groups );

    List<ConstraintViolation<T>> failingConstraintViolations = new ArrayList<ConstraintViolation<T>>();
    validateProperty( object, new PropertyIterator( propertyName ), failingConstraintViolations, groupChain );
    return new HashSet<ConstraintViolation<T>>( failingConstraintViolations );
  }
View Full Code Here


    }
    sanityCheckPropertyPath( propertyName );
    GroupChain groupChain = determineGroupExecutionOrder( groups );

    List<ConstraintViolation<T>> failingConstraintViolations = new ArrayList<ConstraintViolation<T>>();
    validateValue( beanType, value, new PropertyIterator( propertyName ), failingConstraintViolations, groupChain );
    return new HashSet<ConstraintViolation<T>>( failingConstraintViolations );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validation.util.PropertyIterator

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.