| | |
| | | * Copyright 2006-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2014 ForgeRock AS |
| | | */ |
| | | |
| | | package org.opends.guitools.uninstaller; |
| | | |
| | | import org.opends.server.admin.client.cli.DsFrameworkCliReturnCode; |
| | |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | import org.forgerock.i18n.LocalizableMessageBuilder; |
| | | |
| | | import static org.forgerock.util.Utils.*; |
| | | import static org.opends.messages.AdminToolMessages.*; |
| | | import static org.opends.messages.QuickSetupMessages.*; |
| | | |
| | |
| | | import org.opends.server.util.cli.MenuBuilder; |
| | | import org.opends.server.util.cli.MenuResult; |
| | | |
| | | |
| | | import java.util.HashSet; |
| | | import java.util.LinkedHashSet; |
| | | import java.util.Set; |
| | |
| | | INFO_CLI_UNINSTALL_CONFIRM_BACKUPS.get(), |
| | | INFO_CLI_UNINSTALL_CONFIRM_LDIFS.get(), |
| | | INFO_CLI_UNINSTALL_CONFIRM_OUTSIDEDBS.get( |
| | | Utils.getStringFromCollection(outsideDbs, |
| | | Constants.LINE_SEPARATOR)), |
| | | joinAsString(Constants.LINE_SEPARATOR, outsideDbs)), |
| | | INFO_CLI_UNINSTALL_CONFIRM_OUTSIDELOGS.get( |
| | | Utils.getStringFromCollection(outsideLogs, |
| | | Constants.LINE_SEPARATOR) |
| | | joinAsString(Constants.LINE_SEPARATOR, outsideLogs) |
| | | ) |
| | | }; |
| | | |