![JAR search and dependency download from the Maven repository](/logo.png)
org.flips.model.EmptyFlipConditionEvaluator 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.model;
import org.springframework.context.ApplicationContext;
class EmptyFlipConditionEvaluator extends FlipConditionEvaluator {
protected EmptyFlipConditionEvaluator(ApplicationContext applicationContext, FeatureContext featureContext) {
super(applicationContext, featureContext);
}
@Override
public boolean evaluate() {
return true;
}
@Override
public boolean isEmpty() {
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy