summaryrefslogtreecommitdiffstats
path: root/base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java')
-rw-r--r--base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java b/base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java
index e9790b985..fb324be25 100644
--- a/base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java
+++ b/base/java-tools/src/com/netscape/cmstools/key/KeyCLI.java
@@ -39,18 +39,21 @@ public class KeyCLI extends CLI {
public KeyCLI(CLI parent) {
super("key", "Key management commands", parent);
- addModule(new KeyFindCLI(this));
+ addModule(new KeyTemplateFindCLI(this));
+ addModule(new KeyTemplateShowCLI(this));
+
addModule(new KeyRequestFindCLI(this));
- addModule(new KeyShowCLI(this));
addModule(new KeyRequestShowCLI(this));
+ addModule(new KeyRequestReviewCLI(this));
+
+ addModule(new KeyFindCLI(this));
+ addModule(new KeyShowCLI(this));
addModule(new KeyModifyCLI(this));
- addModule(new KeyTemplateFindCLI(this));
- addModule(new KeyTemplateShowCLI(this));
+
+ addModule(new KeyGenerateCLI(this));
addModule(new KeyArchiveCLI(this));
addModule(new KeyRetrieveCLI(this));
- addModule(new KeyGenerateCLI(this));
addModule(new KeyRecoverCLI(this));
- addModule(new KeyRequestReviewCLI(this));
}
public String getFullName() {