| File was renamed from opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallUserData.java |
| | |
| | | * Portions Copyright 2006-2007 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.quicksetup.uninstaller; |
| | | package org.opends.guitools.uninstaller; |
| | | |
| | | import org.opends.quicksetup.UserData; |
| | | |
| | |
| | | private boolean removeBackups; |
| | | private boolean removeLDIFs; |
| | | private boolean removeConfigurationAndSchema; |
| | | private boolean updateRemoteReplication; |
| | | |
| | | /** |
| | | * Sets the database directories located outside the installation which must |
| | |
| | | { |
| | | 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; |
| | | } |
| | | } |