![JAR search and dependency download from the Maven repository](/logo.png)
org.voovan.docker.message.container.atom.Healthcheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDocker Show documentation
Show all versions of JDocker Show documentation
By encapsulating the Docker API enables developers to use Java can quickly developed the control and operation of the Docker application, using streaming operation, simple and clear.
The newest version!
package org.voovan.docker.message.container.atom;
import java.util.ArrayList;
import java.util.List;
/**
* 类文字命名
*
* @author: helyho
* JDocker Framework.
* WebSite: https://github.com/helyho/JDocker
* Licence: Apache v2 License
*/
public class Healthcheck {
private List test;
private int interval;
private int timeout;
private int retries;
public Healthcheck(){
test = new ArrayList();
}
public List getTest() {
return test;
}
public void setTest(List test) {
this.test = test;
}
public int getInterval() {
return interval;
}
public void setInterval(int interval) {
this.interval = interval;
}
public int getTimeout() {
return timeout;
}
public void setTimeout(int timeout) {
this.timeout = timeout;
}
public int getRetries() {
return retries;
}
public void setRetries(int retries) {
this.retries = retries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy