From f2797b991570267b97d045b5024f3a45b399e9b9 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 08 Nov 2007 00:00:39 +0000
Subject: [PATCH] Update the code of the interactive installer to be consistent with dsconfig, setup and status command-lines in the formatting and in the format used to present certificates to the user.
---
opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
index 99c4353..abbb7f0 100644
--- a/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
+++ b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
@@ -58,6 +58,7 @@
private boolean useSSL;
private boolean useStartTLS;
private String replicationServer;
+ private String referencedHostName;
/**
* Sets the database directories located outside the installation which must
@@ -308,6 +309,23 @@
}
/**
+ * Returns the server host name as referenced in other servers.
+ * @return the server host name as referenced in other servers.
+ */
+ public String getReferencedHostName() {
+ return referencedHostName;
+ }
+
+ /**
+ * Sets the server host name as referenced in other servers.
+ * @param referencedHostName server host name as referenced in other
+ * servers.
+ */
+ public void setReferencedHostName(String referencedHostName) {
+ this.referencedHostName = referencedHostName;
+ }
+
+ /**
* Returns the LDAP URL that we used to connect to the local server.
* @return the LDAP URL that we used to connect to the local server.
*/
--
Gitblit v1.10.0