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

jvergara
22.30.2007 06779fb942a83a58766c73da4575f97050c38f48
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UserUninstallData.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.quicksetup.uninstaller;
@@ -48,9 +48,6 @@
  private boolean stopServer;
  private String directoryManagerDn;
  private String directoryManagerPwd;
  /**
   * Sets the database directories located outside the installation which must
   * be removed.
@@ -230,42 +227,5 @@
  {
    return stopServer;
  }
  /**
   * Sets the DN to be used to shut down the server in Windows.
   * @param directoryManagerDn the DN to be used to shut down the server in
   * Windows.
   */
  public void setDirectoryManagerDn(String directoryManagerDn)
  {
    this.directoryManagerDn = directoryManagerDn;
  }
  /**
   * Returns the DN to be used to shut down the server in Windows.
   * @return the DN to be used to shut down the server in Windows.
   */
  public String getDirectoryManagerDn()
  {
    return directoryManagerDn;
  }
  /**
   * Sets the password to be used to shut down the server in Windows.
   * @param password the password to be used to shut down the server in Windows.
   */
  public void setDirectoryManagerPwd(String password)
  {
    this.directoryManagerPwd = password;
  }
  /**
   * Returns the password to be used to shut down the server in Windows.
   * @return the password to be used to shut down the server in Windows.
   */
  public String getDirectoryManagerPwd()
  {
    return directoryManagerPwd;
  }
}