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

cloud.eppo.rac.dto.Rule Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** Rule Class */
public class Rule {
  private final String allocationKey;
  private final List conditions;

  @JsonCreator
  public Rule(
      @JsonProperty("allocationKey") String allocationKey,
      @JsonProperty("conditions") List conditions) {
    this.allocationKey = allocationKey;
    this.conditions = conditions;
  }

  public String getAllocationKey() {
    return allocationKey;
  }

  public List getConditions() {
    return conditions;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy