From 4d1ec71c790e467ecae184df01abf825f94d1dc3 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 13 Nov 2013 12:00:06 -0500 Subject: Added paging on all find commands. The find commands in some REST services have been modified to support paging to be consistent with others. The other find commands have been cleaned up as well. --- .../netscape/cmstools/profile/ProfileFindCLI.java | 36 +++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) (limited to 'base/java-tools/src/com/netscape/cmstools/profile') diff --git a/base/java-tools/src/com/netscape/cmstools/profile/ProfileFindCLI.java b/base/java-tools/src/com/netscape/cmstools/profile/ProfileFindCLI.java index 1370319f9..21559551c 100644 --- a/base/java-tools/src/com/netscape/cmstools/profile/ProfileFindCLI.java +++ b/base/java-tools/src/com/netscape/cmstools/profile/ProfileFindCLI.java @@ -2,7 +2,11 @@ package com.netscape.cmstools.profile; import java.util.Collection; +import org.apache.commons.cli.CommandLine; +import org.apache.commons.cli.Option; + import com.netscape.certsrv.profile.ProfileDataInfo; +import com.netscape.certsrv.profile.ProfileDataInfos; import com.netscape.cmstools.cli.CLI; import com.netscape.cmstools.cli.MainCLI; @@ -21,7 +25,37 @@ public class ProfileFindCLI extends CLI { public void execute(String[] args) throws Exception { - Collection infos = profileCLI.profileClient.listProfiles().getProfileInfos(); + Option option = new Option(null, "start", true, "Page start"); + option.setArgName("start"); + options.addOption(option); + + option = new Option(null, "size", true, "Page size"); + option.setArgName("size"); + options.addOption(option); + + CommandLine cmd = null; + + try { + cmd = parser.parse(options, args); + + } catch (Exception e) { + System.err.println("Error: " + e.getMessage()); + printHelp(); + System.exit(1); + } + + String s = cmd.getOptionValue("start"); + Integer start = s == null ? null : Integer.valueOf(s); + + s = cmd.getOptionValue("size"); + Integer size = s == null ? null : Integer.valueOf(s); + + ProfileDataInfos response = profileCLI.profileClient.listProfiles(start, size); + + MainCLI.printMessage(response.getTotal() + " entries matched"); + if (response.getTotal() == 0) return; + + Collection infos = response.getEntries(); boolean first = true; for (ProfileDataInfo info: infos) { -- cgit