You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/05/14 05:34:50 UTC

svn commit: r944094 - /geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java

Author: genspring
Date: Fri May 14 03:34:50 2010
New Revision: 944094

URL: http://svn.apache.org/viewvc?rev=944094&view=rev
Log:
GERONIMO-5303 Improve metadata of encrypt command, patch from Jeff

Modified:
    geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java

Modified: geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java?rev=944094&r1=944093&r2=944094&view=diff
==============================================================================
--- geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java (original)
+++ geronimo/server/branches/2.2/framework/modules/geronimo-cli/src/main/java/org/apache/geronimo/cli/deployer/EncryptCommandMetaData.java Fri May 14 03:34:50 2010
@@ -24,13 +24,14 @@ public class EncryptCommandMetaData exte
     public static final CommandMetaData META_DATA = new EncryptCommandMetaData();
     
     private EncryptCommandMetaData() {
-        super("encrypt", "2. Other Commands", "",
+        super("encrypt", "2. Other Commands", "[--offline] string",
                 "Encrypt a string for use in deployment plan.\n" +
-                "If you want to use a running server to do the encryption (so that\n" +
-                "you will use the encryption setting of that server, make sure the\n" +
-                "server is running and specify the general options to connect to it.\n" +
-                "If you want to use the common simple encryption, use the --offline\n" +
-                "option. No running server is required in this case.");
+                "If you want to use a running server to do the encryption, so " +
+                "that you can use the encryption setting of that server, " +
+                "make sure the server is running and specify the general " +
+                "options to connect to it.\n "+
+                "If you want to use the common simple encryption, use the "+
+                " --offline option. No running server is required in this case.");
     }
 
 }