summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java
index e156fe91..874019d7 100644
--- a/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java
+++ b/auth/auth-certman/src/main/java/org/onap/aaf/auth/cm/data/CertResp.java
@@ -37,7 +37,8 @@ public class CertResp {
private KeyPair keyPair;
private String challenge;
- private String privateKey, certString;
+ private String privateKey;
+ private String certString;
private String[] trustChain;
private String[] notes;
@@ -61,7 +62,7 @@ public class CertResp {
return certString;
}
- public String privateString() throws IOException {
+ public String privateString() {
return privateKey;
}