org.flips.annotation.FlipOnEnvironmentProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flips-core Show documentation
Show all versions of flips-core Show documentation
Flips Core framework, provides all the flip annotations, conditions and different advices
package org.flips.annotation;
import org.flips.condition.SpringEnvironmentPropertyFlipCondition;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@FlipOnOff(value = SpringEnvironmentPropertyFlipCondition.class)
public @interface FlipOnEnvironmentProperty {
String property();
String expectedValue() default "true";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy