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

jvergara
08.32.2007 7054d27e8676f4c9661b28ed50ae63df22b23af4
opendj-sdk/opends/src/guitools/org/opends/guitools/uninstaller/UninstallUserData.java
File was renamed from opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/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;
  }
}