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

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

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

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

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

  public Shard(String salt, Set ranges) {
    this.salt = salt;
    this.ranges = ranges;
  }

  public String getSalt() {
    return salt;
  }

  public Set getRanges() {
    return ranges;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy