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

com.orbitz.consul.model.acl.BasePolicyResponse Maven / Gradle / Ivy

package com.orbitz.consul.model.acl;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.math.BigInteger;
import java.util.Optional;

public abstract class BasePolicyResponse {

    @JsonProperty("ID")
    public abstract String id();

    @JsonProperty("Name")
    public abstract String name();

    @JsonProperty("Datacenters")
    public abstract Optional datacenters();

    @JsonProperty("Hash")
    public abstract String hash();

    @JsonProperty("CreateIndex")
    public abstract BigInteger createIndex();

    @JsonProperty("ModifyIndex")
    public abstract BigInteger modifyIndex();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy