All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.docker.client.stack.DeployStackOptions Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy