9a0e1c0dac3f778173cd7b0e93cd1c0bf4a88212
[aaf/authz.git] / auth / auth-certman / src / main / java / org / onap / aaf / auth / cm / ca / X509andChain.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 package org.onap.aaf.auth.cm.ca;
22
23 import java.io.IOException;
24 import java.security.cert.X509Certificate;
25 import java.util.List;
26
27 import org.onap.aaf.auth.env.NullTrans;
28 import org.onap.aaf.cadi.configure.CertException;
29 import org.onap.aaf.cadi.configure.Factory;
30
31
32 /**
33  * Have to put the Cert and resulting Trust Chain together. 
34  * Treating them separately has caused issues
35  * 
36  * @author JonathanGathman
37  *
38  */
39 public class X509andChain {
40     protected X509Certificate cert;
41     protected String[] trustChain;
42     
43     public X509andChain() {
44         cert = null;
45         trustChain = null;
46     }
47     
48     public X509andChain(X509Certificate cert, String[] tc) {
49         this.cert = cert;
50         trustChain=tc;
51     }
52
53     public X509andChain(X509Certificate cert, List<String> chain) {
54         this.cert = cert;
55         trustChain = new String[chain.size()+1];
56         chain.toArray(trustChain);
57     }
58     
59     
60     public void addTrustChainEntry(X509Certificate x509) throws IOException, CertException {
61         if (trustChain==null) {
62             trustChain = new String[] {Factory.toString(NullTrans.singleton(),x509)};
63         } else {
64             String[] temp = new String[trustChain.length+1];
65             System.arraycopy(trustChain, 0, temp, 0, trustChain.length);
66             temp[trustChain.length]=Factory.toString(NullTrans.singleton(),x509);
67             trustChain=temp;
68         }
69     }
70     
71
72     public X509Certificate getX509() {
73         return cert;
74     }
75     
76     public String[] getTrustChain() {
77         return trustChain;
78     }
79     
80 }