se.bjurr.jmib.anotations.Default Maven / Gradle / Ivy
package se.bjurr.jmib.anotations;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.CLASS;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(CLASS)
@Target({PARAMETER})
public @interface Default {
String value();
}