Merge "Sonar Fix: CertResp.java"
authorJonathan Gathman <jonathan.gathman@att.com>
Wed, 12 Dec 2018 23:28:19 +0000 (23:28 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 12 Dec 2018 23:28:19 +0000 (23:28 +0000)
auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java

index 874019d..71ccf3c 100644 (file)
@@ -42,7 +42,7 @@ public class CertResp {
     private String[] trustChain;
     private String[] notes;
     
-    public CertResp(Trans trans, CA ca, X509Certificate x509, CSRMeta csrMeta, String[] trustChain, String[] notes) throws IOException, GeneralSecurityException, CertException {
+    public CertResp(Trans trans, CA ca, X509Certificate x509, CSRMeta csrMeta, String[] trustChain, String[] notes) throws IOException, CertException {
         keyPair = csrMeta.keypair(trans);
         privateKey = Factory.toString(trans, keyPair.getPrivate());
         certString = Factory.toString(trans,x509);