summaryrefslogtreecommitdiffstats
path: root/base/java-tools/src/com/netscape/cmstools/profile
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2014-11-21 16:16:33 -0500
committerEndi S. Dewata <edewata@redhat.com>2014-11-25 10:04:27 -0500
commit93a8a1f66b401d6a8f46a14d1143feb1ade21de9 (patch)
tree45991949f3ead0b2662c7ee0200aca87e8ab83a9 /base/java-tools/src/com/netscape/cmstools/profile
parent7260d6c1568d77bb2ab3de9264006b411b505cc6 (diff)
downloadpki-93a8a1f66b401d6a8f46a14d1143feb1ade21de9.tar.gz
pki-93a8a1f66b401d6a8f46a14d1143feb1ade21de9.tar.xz
pki-93a8a1f66b401d6a8f46a14d1143feb1ade21de9.zip
Removed profile input/output IDs from CLI output.
The current profile inputs/outputs do not have meaningful IDs (e.g. i1, i2, o1) and are not used by the client so they should not be displayed in the CLI output. In the future the IDs should be renamed into something meaningful (e.g. keygen, sn, cert) and the inputs/outputs should be retrieved by ID. New methods have been added to retrieve by ID. https://fedorahosted.org/pki/ticket/1147
Diffstat (limited to 'base/java-tools/src/com/netscape/cmstools/profile')
-rw-r--r--base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java b/base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java
index 732b597af..6d8c6b655 100644
--- a/base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java
+++ b/base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java
@@ -79,7 +79,6 @@ public class ProfileCLI extends CLI {
for (ProfileInput input: data.getInputs()) {
System.out.println();
- System.out.println(" Input ID: " + input.getId());
System.out.println(" Name: " + input.getName());
System.out.println(" Class: " + input.getClassId());
for (ProfileAttribute attr : input.getAttributes()) {
@@ -94,7 +93,6 @@ public class ProfileCLI extends CLI {
for (ProfileOutput output: data.getOutputs()) {
System.out.println();
- System.out.println(" Output ID: " + output.getId());
System.out.println(" Name: " + output.getName());
System.out.println(" Class: " + output.getClassId());
for (ProfileAttribute attr: output.getAttrs()) {
@@ -148,7 +146,6 @@ public class ProfileCLI extends CLI {
for (ProfileInput input: request.getInputs()) {
System.out.println();
- System.out.println(" Input ID: " + input.getId());
System.out.println(" Name: " + input.getName());
System.out.println(" Class: " + input.getClassId());
for (ProfileAttribute attr : input.getAttributes()) {
@@ -163,7 +160,6 @@ public class ProfileCLI extends CLI {
for (ProfileOutput output: request.getOutputs()) {
System.out.println();
- System.out.println(" Output ID: " + output.getId());
System.out.println(" Name: " + output.getName());
System.out.println(" Class: " + output.getClassId());
for (ProfileAttribute attr: output.getAttrs()) {