![JAR search and dependency download from the Maven repository](/logo.png)
org.flips.model.FlipConditionEvaluator 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;
public abstract class FlipConditionEvaluator {
protected final ApplicationContext applicationContext;
protected final FeatureContext featureContext;
protected FlipConditionEvaluator(ApplicationContext applicationContext, FeatureContext featureContext){
this.applicationContext = applicationContext;
this.featureContext = featureContext;
}
public abstract boolean evaluate();
public abstract boolean isEmpty();
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("FlipConditionEvaluator{");
sb.append(this.getClass().getName());
sb.append('}');
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy