Package org.hibernate.validator.internal.metadata.location

Examples of org.hibernate.validator.internal.metadata.location.BeanConstraintLocation


  public ConstrainedElement build(ConstraintHelper constraintHelper) {
    if ( member instanceof Field ) {
      return new ConstrainedField(
          ConfigurationSource.API,
          new BeanConstraintLocation( member ),
          getConstraints( constraintHelper ),
          groupConversions,
          isCascading
      );
    }
View Full Code Here


    Set<MetaConstraint<?>> classLevelConstraints = getClassLevelConstraints( beanClass );
    if ( !classLevelConstraints.isEmpty() ) {
      ConstrainedType classLevelMetaData =
          new ConstrainedType(
              ConfigurationSource.ANNOTATION,
              new BeanConstraintLocation( beanClass ),
              classLevelConstraints
          );
      constrainedElements.add( classLevelMetaData );
    }
View Full Code Here

    boolean isCascading = field.isAnnotationPresent( Valid.class );

    return new ConstrainedField(
        ConfigurationSource.ANNOTATION,
        new BeanConstraintLocation( field ),
        constraints,
        groupConversions,
        isCascading
    );
  }
View Full Code Here

    };
  }

  private <A extends Annotation> MetaConstraint<?> createMetaConstraint(Class<?> declaringClass,
      ConstraintDescriptorImpl<A> descriptor) {
    return new MetaConstraint<A>( descriptor, new BeanConstraintLocation( declaringClass ) );
  }
View Full Code Here

    return new MetaConstraint<A>( descriptor, new BeanConstraintLocation( declaringClass ) );
  }

  private <A extends Annotation> MetaConstraint<?> createMetaConstraint(Member member,
      ConstraintDescriptorImpl<A> descriptor) {
    return new MetaConstraint<A>( descriptor, new BeanConstraintLocation( member ) );
  }
View Full Code Here

    if ( !groupSequence.isEmpty() ) {
      defaultSequences.put( beanClass, groupSequence );
    }

    // constraints
    BeanConstraintLocation constraintLocation = new BeanConstraintLocation( beanClass );
    Set<MetaConstraint<?>> metaConstraints = newHashSet();
    for ( ConstraintType constraint : classType.getConstraint() ) {
      MetaConstraint<?> metaConstraint = MetaConstraintBuilder.buildMetaConstraint(
          constraintLocation,
          constraint,
View Full Code Here

    this.location = location;
  }

  static <A extends Annotation> ConfiguredConstraint<A, BeanConstraintLocation> forType(ConstraintDef<?, A> constraint, Class<?> beanType) {
    return new ConfiguredConstraint<A, BeanConstraintLocation>(
        constraint, new BeanConstraintLocation( beanType )
    );
  }
View Full Code Here

  }

  static <A extends Annotation> ConfiguredConstraint<A, BeanConstraintLocation> forProperty(ConstraintDef<?, A> constraint, Member member) {

    return new ConfiguredConstraint<A, BeanConstraintLocation>(
        constraint, new BeanConstraintLocation( member )
    );
  }
View Full Code Here

    Set<MetaConstraint<?>> classLevelConstraints = getClassLevelConstraints( beanClass );
    if ( !classLevelConstraints.isEmpty() ) {
      ConstrainedType classLevelMetaData =
          new ConstrainedType(
              ConfigurationSource.ANNOTATION,
              new BeanConstraintLocation( beanClass ),
              classLevelConstraints
          );
      propertyMetaData.add( classLevelMetaData );
    }
View Full Code Here

    boolean isCascading = field.isAnnotationPresent( Valid.class );

    return new ConstrainedField(
        ConfigurationSource.ANNOTATION,
        new BeanConstraintLocation( field ),
        constraints,
        isCascading
    );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.metadata.location.BeanConstraintLocation

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.