From ee3642c86959b44af3ff0e9fde9950a966527596 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Tue, 07 Aug 2007 22:32:50 +0000
Subject: [PATCH] The following modifications have the following goals:
---
opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallUserData.java b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
similarity index 88%
rename from opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallUserData.java
rename to opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
index 5e15eda..132e45f 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallUserData.java
+++ b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
@@ -25,7 +25,7 @@
* Portions Copyright 2006-2007 Sun Microsystems, Inc.
*/
-package org.opends.quicksetup.uninstaller;
+package org.opends.guitools.uninstaller;
import org.opends.quicksetup.UserData;
@@ -45,6 +45,7 @@
private boolean removeBackups;
private boolean removeLDIFs;
private boolean removeConfigurationAndSchema;
+ private boolean updateRemoteReplication;
/**
* Sets the database directories located outside the installation which must
@@ -206,4 +207,25 @@
{
return removeConfigurationAndSchema;
}
+
+ /**
+ * Sets whether to update remote replication configuration or not.
+ * @param updateRemoteReplication update remote replication configuration
+ * or not.
+ */
+ public void setUpdateRemoteReplication(boolean updateRemoteReplication)
+ {
+ this.updateRemoteReplication = updateRemoteReplication;
+ }
+
+ /**
+ * Returns whether the user wants to update remote replication configuration
+ * or not.
+ * @return <CODE>true</CODE> if the user wants to update remote replication
+ * configuration and <CODE>false</CODE> otherwise.
+ */
+ public boolean getUpdateRemoteReplication()
+ {
+ return updateRemoteReplication;
+ }
}
--
Gitblit v1.10.0