io.jbock.simple.Qualifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-component Show documentation
Show all versions of simple-component Show documentation
annotations for simple-component
package io.jbock.simple;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Identifies qualifier annotations.
*/
@Target(ANNOTATION_TYPE)
@Retention(RUNTIME)
public @interface Qualifier {
}