com.alexecollins.docker.orchestration.model.HealthChecks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java-orchestration Show documentation
Show all versions of docker-java-orchestration Show documentation
A library for orchestrating Docker containers.
package com.alexecollins.docker.orchestration.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
public class HealthChecks {
@JsonProperty(required = false)
private List pings = new ArrayList();
public List getPings() {
return pings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy