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

io.getunleash.strategy.DefaultStrategy Maven / Gradle / Ivy

There is a newer version: 9.2.4
Show newest version
package io.getunleash.strategy;

import java.util.Map;

public final class DefaultStrategy implements Strategy {

    private static final String STRATEGY_NAME = "default";

    @Override
    public String getName() {
        return STRATEGY_NAME;
    }

    @Override
    public boolean isEnabled(Map parameters) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy