From 752166224154243f93fad5ea10dd4ebd87e1c369 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 1 Aug 2013 04:17:07 -0400 Subject: Refactored client framework. A new Client class was added as a base for all client classes. The SubsystemClient was added as a base for all subsystem clients. It also provides methods to authenticate against the subsystem. The DRMClient has been renamed to KRAClient to match the actual subsystem name. Ticket #701 --- base/java-tools/src/com/netscape/cmstools/system/SecurityDomainCLI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/java-tools/src/com/netscape/cmstools') diff --git a/base/java-tools/src/com/netscape/cmstools/system/SecurityDomainCLI.java b/base/java-tools/src/com/netscape/cmstools/system/SecurityDomainCLI.java index ed107f831..fc23a5257 100644 --- a/base/java-tools/src/com/netscape/cmstools/system/SecurityDomainCLI.java +++ b/base/java-tools/src/com/netscape/cmstools/system/SecurityDomainCLI.java @@ -68,7 +68,7 @@ public class SecurityDomainCLI extends CLI { public void execute(String[] args) throws Exception { - client = new SecurityDomainClient(parent.config); + client = new SecurityDomainClient(parent.client); if (args.length == 0) { printHelp(); -- cgit