From b54e25e8af0e73b7ddaca4eaec088803ea6a7e4f Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 22 Feb 2007 09:30:33 +0000
Subject: [PATCH] Fix for Issues #1025 and #1248 ('stop-ds.bat should be able to stop server even if LDAP port' and 'cannot stop server through status panel').

---
 opends/src/quicksetup/org/opends/quicksetup/uninstaller/UserUninstallData.java |   42 +-----------------------------------------
 1 files changed, 1 insertions(+), 41 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UserUninstallData.java b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UserUninstallData.java
index a6816b8..752dd23 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UserUninstallData.java
+++ b/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;
-  }
 }
 

--
Gitblit v1.10.0