Skip to content

Instantly share code, notes, and snippets.

@alexchirea
Created November 3, 2021 11:36
Show Gist options
  • Save alexchirea/eaaba57d262c4730ef31f8f724d7b0ad to your computer and use it in GitHub Desktop.
Save alexchirea/eaaba57d262c4730ef31f8f724d7b0ad to your computer and use it in GitHub Desktop.
@Documented
@Constraint(validatedBy = CustomGoogleEmailValidator.class)
@Target({ ElementType.METHOD, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomGoogleEmailConstraint {
String message() default "The email must have \"@gmail.com\" extension";
Class[] groups() default {};
Class[] payload() default {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment