From 922bb410e78593fe90d96f930b880da6dae3de87 Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Wed, 05 Mar 2014 08:09:11 +0000
Subject: [PATCH] Checkpoint OPENDJ-1343 Migrate dsconfig Minor code cleanup and reorganized imports.
---
opendj3-server-dev/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java | 27 +++++++++++++++++----------
1 files changed, 17 insertions(+), 10 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java b/opendj3-server-dev/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java
index 5d0d57e..e47acfa 100644
--- a/opendj3-server-dev/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java
+++ b/opendj3-server-dev/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java
@@ -27,6 +27,11 @@
package org.opends.server.admin.client.cli;
+import static org.opends.server.util.ServerConstants.EOL;
+import static org.opends.server.util.ServerConstants.MAX_LINE_WIDTH;
+import static org.opends.server.util.StaticUtils.wrapText;
+import static org.opends.messages.ToolMessages.*;
+
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
@@ -41,18 +46,20 @@
import org.opends.admin.ads.util.ApplicationTrustManager;
import org.opends.server.util.PasswordReader;
-import com.forgerock.opendj.cli.*;
-
-import static org.opends.messages.ToolMessages.*;
-import static org.opends.server.util.ServerConstants.*;
-import static org.opends.server.util.StaticUtils.*;
+import com.forgerock.opendj.cli.Argument;
+import com.forgerock.opendj.cli.ArgumentException;
+import com.forgerock.opendj.cli.ArgumentGroup;
+import com.forgerock.opendj.cli.BooleanArgument;
+import com.forgerock.opendj.cli.CommonArguments;
+import com.forgerock.opendj.cli.FileBasedArgument;
+import com.forgerock.opendj.cli.StringArgument;
+import com.forgerock.opendj.cli.SubCommandArgumentParser;
/**
- * This is a commodity class that can be used to check the arguments required
- * to establish a secure connection in the command line. It can be used
- * to generate an ApplicationTrustManager object based on the options provided
- * by the user in the command line.
- *
+ * This is a commodity class that can be used to check the arguments required to
+ * establish a secure connection in the command line. It can be used to generate
+ * an ApplicationTrustManager object based on the options provided by the user
+ * in the command line.
*/
public abstract class SecureConnectionCliParser extends SubCommandArgumentParser
{
--
Gitblit v1.10.0