Skip to content

Instantly share code, notes, and snippets.

@h-hub
Created July 15, 2019 16:23
Show Gist options
  • Save h-hub/c7918f1fee3329530b0190ef64cb3394 to your computer and use it in GitHub Desktop.
Save h-hub/c7918f1fee3329530b0190ef64cb3394 to your computer and use it in GitHub Desktop.
@Target({TYPE,ANNOTATION_TYPE})
@Retention(RUNTIME)
@Constraint(validatedBy = ContentTypeMultipartFileValidator.class)
@Documented
public @interface ContentType {
String message() default "Please upload jpg, png or gif and less than 5MB in size";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
String[] value();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment