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

consul.HealthServiceCheckResponse Maven / Gradle / Ivy

package consul;

import java.util.List;

public class HealthServiceCheckResponse {
    private String consulIndex;
    private List serviceList;

    public HealthServiceCheckResponse(String consulIndex, List serviceList) {
        this.consulIndex = consulIndex;
        this.serviceList = serviceList;
    }

    public String getConsulIndex() {
        return consulIndex;
    }

    public List getServiceList() {
        return serviceList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy