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 org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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;
}
}