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

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

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

import java.util.Map;
import java.util.Set;

public class Split {
  private final String variationKey;
  private final Set shards;
  private final Map extraLogging;

  public Split(String variationKey, Set shards, Map extraLogging) {
    this.variationKey = variationKey;
    this.shards = shards;
    this.extraLogging = extraLogging;
  }

  public String getVariationKey() {
    return variationKey;
  }

  public Set getShards() {
    return shards;
  }

  public Map getExtraLogging() {
    return extraLogging;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy