From 93a8a1f66b401d6a8f46a14d1143feb1ade21de9 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 21 Nov 2014 16:16:33 -0500 Subject: 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 --- base/java-tools/src/com/netscape/cmstools/profile/ProfileCLI.java | 4 ---- 1 file changed, 4 deletions(-) (limited to 'base/java-tools/src/com') 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()) { -- cgit