no.finn.unleash.ActivationStrategy 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 no.finn.unleash;
import java.util.Map;
public final class ActivationStrategy {
private final String name;
private final Map parameters;
public ActivationStrategy(String name, Map parameters) {
this.name = name;
this.parameters = parameters;
}
public String getName() {
return name;
}
public Map getParameters() {
return parameters;
}
}