com.github.dockerjava.api.command.HealthState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.command;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class HealthState {
@JsonProperty("Status")
private String status;
@JsonProperty("FailingStreak")
private Integer failingStreak;
@JsonProperty("Log")
private List log;
public String getStatus() {
return status;
}
public Integer getFailingStreak() {
return failingStreak;
}
public List getLog() {
return log;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy