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;
}
}