Package org.hibernate.validator.internal.engine.groups

Examples of org.hibernate.validator.internal.engine.groups.ValidationOrder


    //this might be the case for parameterless methods
    if ( parameterValues == null ) {
      return Collections.emptySet();
    }

    ValidationOrder validationOrder = determineGroupValidationOrder( groups );

    MethodValidationContext<T> context = ValidationContext.getContextForValidateParameters(
        beanMetaDataManager,
        constraintValidatorManager,
        executable,
View Full Code Here


    return validateReturnValue( object, ExecutableElement.forMethod( method ), returnValue, groups );
  }

  private <T> Set<ConstraintViolation<T>> validateReturnValue(T object, ExecutableElement executable, Object returnValue, Class<?>... groups) {

    ValidationOrder validationOrder = determineGroupValidationOrder( groups );

    MethodValidationContext<T> context = ValidationContext.getContextForValidateParameters(
        beanMetaDataManager,
        constraintValidatorManager,
        executable,
View Full Code Here

      }

      if ( !context.isAlreadyValidated(
          value, valueContext.getCurrentGroup(), valueContext.getPropertyPath()
      ) ) {
        ValidationOrder validationOrder = validationOrderGenerator.getValidationOrder(
            Arrays.<Class<?>>asList( valueContext.getCurrentGroup() )
        );

        ValueContext<?, T> newValueContext;
        if ( value != null ) {
View Full Code Here

    if ( !beanMetaDataManager.isConstrained( object.getClass() ) ) {
      return Collections.emptySet();
    }

    ValidationOrder validationOrder = determineGroupValidationOrder( groups );
    ValidationContext<T> validationContext = getValidationContext().forValidate( object );

    ValueContext<?, Object> valueContext = ValueContext.getLocalExecutionContext(
        object,
        beanMetaDataManager.getBeanMetaData( object.getClass() ),
View Full Code Here

  @Override
  public final <T> Set<ConstraintViolation<T>> validateProperty(T object, String propertyName, Class<?>... groups) {
    Contracts.assertNotNull( object, MESSAGES.validatedObjectMustNotBeNull() );

    sanityCheckPropertyPath( propertyName );
    ValidationOrder validationOrder = determineGroupValidationOrder( groups );
    ValidationContext<T> context = getValidationContext().forValidateProperty( object );

    if ( !beanMetaDataManager.isConstrained( context.getRootBeanClass() ) ) {
      return Collections.emptySet();
    }
View Full Code Here

    if ( !beanMetaDataManager.isConstrained( beanType ) ) {
      return Collections.emptySet();
    }

    sanityCheckPropertyPath( propertyName );
    ValidationOrder validationOrder = determineGroupValidationOrder( groups );
    ValidationContext<T> context = getValidationContext().forValidateValue( beanType );

    return validateValueInContext(
        context,
        value,
View Full Code Here

    //this might be the case for parameterless methods
    if ( parameterValues == null ) {
      return Collections.emptySet();
    }

    ValidationOrder validationOrder = determineGroupValidationOrder( groups );

    ValidationContext<T> context = getValidationContext().forValidateParameters(
        parameterNameProvider,
        object,
        executable,
View Full Code Here

    return context.getFailingConstraints();
  }

  private <T> Set<ConstraintViolation<T>> validateReturnValue(T object, ExecutableElement executable, Object returnValue, Class<?>... groups) {
    ValidationOrder validationOrder = determineGroupValidationOrder( groups );

    ValidationContext<T> context = getValidationContext().forValidateReturnValue(
        object,
        executable,
        returnValue
View Full Code Here

        if ( value != null ) {

          // expand the group only if was created by group conversion;
          // otherwise we're looping through the right validation order
          // already and need only to pass the current element
          ValidationOrder validationOrder = validationOrderGenerator.getValidationOrder(
              group,
              group != originalGroup
          );

          // HV-902: First, validate the value itself
View Full Code Here

      }
    }

    private void findMatchingDescriptors(Set<ConstraintDescriptor<?>> matchingDescriptors) {
      if ( !groups.isEmpty() ) {
        ValidationOrder validationOrder = new ValidationOrderGenerator().getValidationOrder( groups );
        Iterator<Group> groupIterator = validationOrder.getGroupIterator();
        while ( groupIterator.hasNext() ) {
          Group g = groupIterator.next();
          addMatchingDescriptorsForGroup( g.getDefiningClass(), matchingDescriptors );
        }
      }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.engine.groups.ValidationOrder

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.