Код: Выделить всё
@Documented
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface ValidFileType {
String[] value() default {
MediaType.TEXT_PLAIN_VALUE,
MediaType.APPLICATION_PDF_VALUE,
MediaType.IMAGE_GIF_VALUE
};
String message() default "{com.example.invalidFileType}";
Class[] groups() default {};
Class
Подробнее здесь: [url]https://stackoverflow.com/questions/79015643/is-to-possible-to-call-annotation-interfaces-default-methods[/url]