diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-07-05 15:00:18 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-07-05 15:00:23 -0500 |
commit | d37b5467a3b8b375b603579d2888a4443a8b06a7 (patch) | |
tree | 54baad3b69be2386bf43e88acac86a15f686a68d /cadi/core/src/main | |
parent | d41c5dc8c946fef66b64e8f95392b07403a93638 (diff) |
Refine Agent for cadi utils
Issue-ID: AAF-361
Change-Id: Id07b60181b906e65aefb24cbe0d192e362c2c3f4
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'cadi/core/src/main')
-rw-r--r-- | cadi/core/src/main/java/org/onap/aaf/cadi/CmdLine.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cadi/core/src/main/java/org/onap/aaf/cadi/CmdLine.java b/cadi/core/src/main/java/org/onap/aaf/cadi/CmdLine.java index ea126f54..9444cfac 100644 --- a/cadi/core/src/main/java/org/onap/aaf/cadi/CmdLine.java +++ b/cadi/core/src/main/java/org/onap/aaf/cadi/CmdLine.java @@ -37,11 +37,7 @@ import org.onap.aaf.cadi.util.JsonOutputStream; /** * A Class to run on command line to determine suitability of environment for certain TAFs. - * - * For instance, CSP supports services only in certain domains, and while dynamic host - * lookups on the machine work in most cases, sometimes, names and IPs are unexpected (and - * invalid) for CSP because of multiple NetworkInterfaces, etc - * + * * * @author Jonathan * */ @@ -336,11 +332,10 @@ public class CmdLine { System.out.println("Usage: java -jar <this jar> ..."); System.out.println(" keygen [<keyfile>] (Generates Key on file, or Std Out)"); System.out.println(" digest [<passwd>|-i|] <keyfile> (Encrypts Password with \"keyfile\""); - System.out.println(" if passwd = -i, will read StdIin"); + System.out.println(" if passwd = -i, will read StdIn"); System.out.println(" if passwd is blank, will ask securely)"); System.out.println(" passgen <digits> (Generate Password of given size)"); System.out.println(" urlgen <digits> (Generate URL field of given size)"); - System.out.println(" csptest (Tests for CSP compatibility)"); System.out.println(" encode64 <your text> (Encodes to Base64)"); System.out.println(" decode64 <base64 encoded text> (Decodes from Base64)"); System.out.println(" encode64url <your text> (Encodes to Base64 URL charset)"); |