com.coditory.quark.context.annotations.ConditionalOnProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quark-context Show documentation
Show all versions of quark-context Show documentation
Coditory Quark Configuration Library
package com.coditory.quark.context.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface ConditionalOnProperty {
String[] value() default {};
String[] name() default {};
String havingValue() default "true";
boolean matchIfMissing() default false;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy