org.flips.condition.FlipOffCondition 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.condition;
import org.flips.model.FeatureContext;
import org.flips.model.FlipAnnotationAttributes;
import org.springframework.stereotype.Component;
@Component
public class FlipOffCondition implements FlipCondition {
@Override
public boolean evaluateCondition(FeatureContext featureContext, FlipAnnotationAttributes flipAnnotationAttributes) {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy