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

org.flips.model.EmptyFlipConditionEvaluator 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.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