io.getunleash.strategy.UnknownStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unleash-client-java Show documentation
Show all versions of unleash-client-java Show documentation
A client library for Unleash
package io.getunleash.strategy;
import java.util.Map;
public final class UnknownStrategy implements Strategy {
private static final String STRATEGY_NAME = "unknown";
@Override
public String getName() {
return STRATEGY_NAME;
}
@Override
public boolean isEnabled(Map parameters) {
return false;
}
}