no.finn.unleash.Constraint 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.List;
public class Constraint {
private final String contextName;
private final Operator operator;
private final List values;
public Constraint(String contextName, Operator operator, List values) {
this.contextName = contextName;
this.operator = operator;
this.values = values;
}
public String getContextName() {
return contextName;
}
public Operator getOperator() {
return operator;
}
public List getValues() {
return values;
}
}