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 String variationKey;

  private Set shards;

  private Map extraLogging;

  public String getVariationKey() {
    return variationKey;
  }

  public void setVariationKey(String variationKey) {
    this.variationKey = variationKey;
  }

  public Set getShards() {
    return shards;
  }

  public void setShards(Set shards) {
    this.shards = shards;
  }

  public Map getExtraLogging() {
    return extraLogging;
  }

  public void setExtraLogging(Map extraLogging) {
    this.extraLogging = extraLogging;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy