io.harness.cf.client.dto.Claim Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ff-java-server-sdk Show documentation
Show all versions of ff-java-server-sdk Show documentation
Harness Feature Flag Java Server SDK
The newest version!
package io.harness.cf.client.dto;
import lombok.Data;
@Data
public class Claim {
private Claim() {
// GraalVM support
environment = clusterIdentifier = accountID = environmentIdentifier = null;
}
private final String environment;
private final String clusterIdentifier;
private final String accountID;
private final String environmentIdentifier;
}