mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
18.24.2007 4dc4aa0c15b318b761b92e2394d0fde58a3e8232
opends/src/quicksetup/org/opends/quicksetup/UserData.java
@@ -84,6 +84,8 @@
  private boolean quiet;
  private boolean verbose;
  private boolean interactive;
  private boolean forceOnError;
@@ -100,6 +102,7 @@
    startServer = true;
    enableWindowsService = false;
    forceOnError = true;
    verbose = false;
    LinkedList<String> baseDn = new LinkedList<String>();
    baseDn.add("dc=example,dc=com");
@@ -473,6 +476,23 @@
  }
  /**
   * Sets whether or not this session should be verbose.
   * @param verbose where true indicates this sesssion should be verbose
   */
  public void setVerbose(boolean verbose) {
    this.verbose = verbose;
  }
  /**
   * Indicates whether or not the user has requested verbose mode.
   *
   * @return boolean where true indicates this session should be verbose.
   */
  public boolean isVerbose() {
    return this.verbose;
  }
  /**
   * Sets whether or not we must continue when there is a non critical error.
   * @param forceOnError where true indicates to continue uninstall if there is
   * a non critical error.