summaryrefslogtreecommitdiffstats
path: root/auth/auth-certman
diff options
context:
space:
mode:
Diffstat (limited to 'auth/auth-certman')
-rw-r--r--auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java
index 7eb88bd2..9a0e1c0d 100644
--- a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java
+++ b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/ca/X509andChain.java
@@ -45,12 +45,12 @@ public class X509andChain {
trustChain = null;
}
- public X509andChain(X509Certificate cert, String[] tc) throws IOException, CertException {
+ public X509andChain(X509Certificate cert, String[] tc) {
this.cert = cert;
trustChain=tc;
}
- public X509andChain(X509Certificate cert, List<String> chain) throws IOException, CertException {
+ public X509andChain(X509Certificate cert, List<String> chain) {
this.cert = cert;
trustChain = new String[chain.size()+1];
chain.toArray(trustChain);