cloud.eppo.ufc.dto.Shard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-common-jvm Show documentation
Show all versions of sdk-common-jvm Show documentation
Eppo SDK for JVM shared library
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;
}
}