All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.flips.annotation.FlipOnEnvironmentProperty Maven / Gradle / Ivy

Go to download

Flips Core framework, provides all the flip annotations, conditions and different advices

There is a newer version: 1.1
Show newest version
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