From a7024ad2f0df65a2005e29d24a5974304d2b58c6 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Tue, 19 Jun 2018 16:17:21 -0500 Subject: AAFCli needs ability to change root_ns for testing Issue-ID: AAF-365 Change-Id: If11e7a3f9cce1f0d2720b0ed656e77113270e9b2 Signed-off-by: Instrumental --- auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'auth/auth-cmd/src/main') diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java index 2efbff73..ab41eb85 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java @@ -94,11 +94,11 @@ public class AAFcli { } // Create when only have Access - public AAFcli(Access access, Writer wtr, HMangr hman, SecurityInfoC si, SecuritySetter ss) throws APIException { + public AAFcli(Access access, Writer wtr, HMangr hman, SecurityInfoC si, SecuritySetter ss) throws APIException, CadiException { this(access,new AuthzEnv(access.getProperties()),wtr,hman, si,ss); } - public AAFcli(Access access, AuthzEnv env, Writer wtr, HMangr hman, SecurityInfoC si, SecuritySetter ss) throws APIException { + public AAFcli(Access access, AuthzEnv env, Writer wtr, HMangr hman, SecurityInfoC si, SecuritySetter ss) throws APIException, CadiException { this.env = env; this.access = access; this.ss = ss; @@ -112,7 +112,6 @@ public class AAFcli { close = true; } - /* * Create Cmd Tree */ -- cgit