Merge "Sonar Fix: Mgmt.java"
[aaf/authz.git] / auth / auth-certman / src / main / java / org / onap / aaf / auth / cm / data / CertResp.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.cm.data;
23
24 import java.io.IOException;
25 import java.security.GeneralSecurityException;
26 import java.security.KeyPair;
27 import java.security.cert.X509Certificate;
28
29 import org.onap.aaf.auth.cm.ca.CA;
30 import org.onap.aaf.auth.cm.cert.CSRMeta;
31 import org.onap.aaf.cadi.configure.CertException;
32 import org.onap.aaf.cadi.configure.Factory;
33 import org.onap.aaf.misc.env.Trans;
34
35 public class CertResp {
36     private CA ca;
37     private KeyPair keyPair;
38     private String challenge;
39     
40     private String privateKey;
41     private String certString;
42     private String[] trustChain;
43     private String[] notes;
44     
45     public CertResp(Trans trans, CA ca, X509Certificate x509, CSRMeta csrMeta, String[] trustChain, String[] notes) throws IOException, CertException {
46         keyPair = csrMeta.keypair(trans);
47         privateKey = Factory.toString(trans, keyPair.getPrivate());
48         certString = Factory.toString(trans,x509);
49         challenge=csrMeta.challenge();
50         this.ca = ca;
51         this.trustChain = trustChain;
52         this.notes = notes;
53     }
54
55     // Use for Read Responses, etc
56     public CertResp(String cert) {
57         certString = cert;
58     }
59
60     
61     public String asCertString() {
62         return certString;
63     }
64     
65     public String privateString() {
66         return privateKey;
67     }
68     
69     public String challenge() {
70         return challenge==null?"":challenge;
71     }
72     
73     public String[] notes() {
74         return notes;
75     }
76     
77     public String[] caIssuerDNs() {
78         return ca.getCaIssuerDNs();
79     }
80     
81     public String env() {
82         return ca.getEnv();
83     }
84     
85     public String[] trustChain() {
86         return trustChain;
87     }
88     
89     public String[] trustCAs() {
90         return ca.getTrustedCAs();
91     }
92 }