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

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

package cloud.eppo.ufc.dto;

import cloud.eppo.model.ShardRange;
import java.util.Set;

public class Shard {
  private String salt;
  private Set ranges;

  public String getSalt() {
    return salt;
  }

  public void setSalt(String salt) {
    this.salt = salt;
  }

  public Set getRanges() {
    return ranges;
  }

  public void setRanges(Set ranges) {
    this.ranges = ranges;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy