io.getunleash.variant.VariantOverride 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
The newest version!
package io.getunleash.variant;
import java.util.List;
public class VariantOverride {
private String contextName;
private List values;
public VariantOverride(String contextName, List values) {
this.contextName = contextName;
this.values = values;
}
public String getContextName() {
return contextName;
}
public List getValues() {
return values;
}
}