AT&T 2.0.19 Code drop, stage 3
[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 import java.util.Set;
29
30 import org.onap.aaf.auth.cm.ca.CA;
31 import org.onap.aaf.auth.cm.cert.CSRMeta;
32 import org.onap.aaf.cadi.cm.CertException;
33 import org.onap.aaf.cadi.cm.Factory;
34 import org.onap.aaf.misc.env.Trans;
35
36 public class CertResp {
37         private CA ca;
38         private KeyPair keyPair;
39         private String challenge;
40         
41         private String privateKey, certString;
42         private String[] trustChain;
43         private String[] trustCAs;
44         private String[] notes;
45         
46         public CertResp(Trans trans, CA ca, X509Certificate x509, CSRMeta csrMeta, String[] trustChain, String[] trustCAs, String[] notes) throws IOException, GeneralSecurityException, CertException {
47                 keyPair = csrMeta.keypair(trans);
48                 privateKey = Factory.toString(trans, keyPair.getPrivate());
49                 certString = Factory.toString(trans,x509);
50                 challenge=csrMeta.challenge();
51                 this.ca = ca;
52                 this.trustChain = trustChain;
53                 this.trustCAs = trustCAs;
54                 this.notes = notes;
55         }
56
57         // Use for Read Responses, etc
58         public CertResp(String cert) {
59                 certString = cert;
60         }
61
62         
63         public String asCertString() {
64                 return certString;
65         }
66         
67         public String privateString() throws IOException {
68                 return privateKey;
69         }
70         
71         public String challenge() {
72                 return challenge==null?"":challenge;
73         }
74         
75         public String[] notes() {
76                 return notes;
77         }
78         
79         public Set<String> caIssuerDNs() {
80                 return ca.getCaIssuerDNs();
81         }
82         
83         public String env() {
84                 return ca.getEnv();
85         }
86         
87         public String[] trustChain() {
88                 return trustChain;
89         }
90         
91         public String[] trustCAs() {
92                 return trustCAs;
93         }
94 }