blob: c3745431f3c0dfec95462f61826ff6d0a7346fe0 [file] [log] [blame]
package org.apache.logging.log4j.plugins.name;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface NameProvider {
Class<? extends AnnotatedElementNameProvider<? extends Annotation>> value();
}