diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-06-19 16:17:21 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-06-19 16:17:26 -0500 |
commit | a7024ad2f0df65a2005e29d24a5974304d2b58c6 (patch) | |
tree | ad663330a51547dbf1697fa0752f6d05915b3a2e /auth/auth-cmd/src/main/java | |
parent | 08a868676801f78f41a62b8061deb46c89ac7255 (diff) |
AAFCli needs ability to change root_ns for testing
Issue-ID: AAF-365
Change-Id: If11e7a3f9cce1f0d2720b0ed656e77113270e9b2
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-cmd/src/main/java')
-rw-r--r-- | auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/AAFcli.java | 5 |
1 files changed, 2 insertions, 3 deletions
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<HttpURLConnection> si, SecuritySetter<HttpURLConnection> ss) throws APIException { + public AAFcli(Access access, Writer wtr, HMangr hman, SecurityInfoC<HttpURLConnection> si, SecuritySetter<HttpURLConnection> 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<HttpURLConnection> si, SecuritySetter<HttpURLConnection> ss) throws APIException { + public AAFcli(Access access, AuthzEnv env, Writer wtr, HMangr hman, SecurityInfoC<HttpURLConnection> si, SecuritySetter<HttpURLConnection> 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 */ |