From 7893dac9736701f4e6bd518328e24c0fa5e83ef3 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 15 Nov 2013 15:19:43 -0500 Subject: Fixed problem with key-find. The key-find command did not return any results due to recent changes. The method name in KeyDataInfos has been fixed such that XML mapping would work properly. --- base/java-tools/src/com/netscape/cmstools/key/KeyFindCLI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/java-tools') diff --git a/base/java-tools/src/com/netscape/cmstools/key/KeyFindCLI.java b/base/java-tools/src/com/netscape/cmstools/key/KeyFindCLI.java index 25fe6af3c..c5c54e7f9 100644 --- a/base/java-tools/src/com/netscape/cmstools/key/KeyFindCLI.java +++ b/base/java-tools/src/com/netscape/cmstools/key/KeyFindCLI.java @@ -99,7 +99,7 @@ public class KeyFindCLI extends CLI { KeyDataInfos keys = keyCLI.keyClient.findKeys(clientID, status, maxResults, maxTime, start, size); - Collection entries = keys.getKeyInfos(); + Collection entries = keys.getEntries(); MainCLI.printMessage(entries.size() + " key(s) matched"); -- cgit