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

com.flagsense.model.Rule Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.flagsense.model;

import com.flagsense.enums.KeyType;
import com.flagsense.enums.Operator;

import java.util.List;

public class Rule {
    private String key;
    private KeyType type;
    private Operator operator;
    private List values;
    private Boolean match;

    public String getKey() {
        return key;
    }

    public KeyType getType() {
        return type;
    }

    public Operator getOperator() {
        return operator;
    }

    public List getValues() {
        return values;
    }

    public Boolean getMatch() {
        return match;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy