Class ConstraintValidatorCheck

java.lang.Object
org.hibernate.validator.ap.internal.checks.AbstractConstraintCheck
org.hibernate.validator.ap.internal.checks.ConstraintValidatorCheck
All Implemented Interfaces:
ConstraintCheck

public class ConstraintValidatorCheck extends AbstractConstraintCheck
Checks, that for each constraint annotation type, which is not a composed constraint, a validator implementation is specified using the Constraint annotation.
Author:
Gunnar Morling
  • Constructor Details

  • Method Details

    • checkAnnotationType

      public Set<ConstraintCheckIssue> checkAnnotationType(TypeElement element, AnnotationMirror annotation)
      Description copied from interface: ConstraintCheck
      Checks, whether the given annotation is allowed at the given annotation type declaration.
      Specified by:
      checkAnnotationType in interface ConstraintCheck
      Overrides:
      checkAnnotationType in class AbstractConstraintCheck
      Parameters:
      element - An annotated annotation type declaration.
      annotation - An annotation at that annotation type.
      Returns:
      A set with errors, that describe, why the given annotation is not allowed at the given element. In case no errors occur (the given annotation is allowed at the given element), an empty set must be returned.