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

no.finn.unleash.Constraint Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy