de.gesellix.docker.client.stack.DeployStackOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-client Show documentation
Show all versions of docker-client Show documentation
A Docker client for the JVM written in Groovy
The newest version!
package de.gesellix.docker.client.stack;
public class DeployStackOptions {
private boolean pruneServices = false;
private boolean sendRegistryAuth = false;
public boolean getPruneServices() {
return pruneServices;
}
public boolean isPruneServices() {
return pruneServices;
}
public void setPruneServices(boolean pruneServices) {
this.pruneServices = pruneServices;
}
public boolean getSendRegistryAuth() {
return sendRegistryAuth;
}
public boolean isSendRegistryAuth() {
return sendRegistryAuth;
}
public void setSendRegistryAuth(boolean sendRegistryAuth) {
this.sendRegistryAuth = sendRegistryAuth;
}
}