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

cloud.eppo.ufc.dto.TargetingCondition Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
package cloud.eppo.ufc.dto;

import cloud.eppo.api.EppoValue;

public class TargetingCondition {
  private final OperatorType operator;
  private final String attribute;
  private final EppoValue value;

  public TargetingCondition(OperatorType operator, String attribute, EppoValue value) {
    this.operator = operator;
    this.attribute = attribute;
    this.value = value;
  }

  public OperatorType getOperator() {
    return operator;
  }

  public String getAttribute() {
    return attribute;
  }

  public EppoValue getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy