Annotation Interface SelfValidating


@Documented @Target({TYPE,ANNOTATION_TYPE}) @Retention(RUNTIME) @Constraint(validatedBy=SelfValidatingValidator.class) public @interface SelfValidating
The annotated element has methods annotated by SelfValidation. Those methods are executed on validation.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Class<?>[]
    The groups the constraint belongs to.
    The validation message for this constraint.
    Class<? extends jakarta.validation.Payload>[]
    The payloads of this constraint.
  • Element Details

    • message

      String message
      The validation message for this constraint.
      Returns:
      the message
      Default:
      ""
    • groups

      Class<?>[] groups
      The groups the constraint belongs to.
      Returns:
      an array of classes representing the groups
      Default:
      {}
    • payload

      Class<? extends jakarta.validation.Payload>[] payload
      The payloads of this constraint.
      Returns:
      the array of payload classes
      Default:
      {}