Update project structure to org.onap.aaf
[aaf/authz.git] / authz-certman / src / main / java / org / onap / aaf / authz / cm / ca / CA.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.authz.cm.ca;\r
24 \r
25 import java.io.IOException;\r
26 import java.security.MessageDigest;\r
27 import java.security.cert.X509Certificate;\r
28 \r
29 import org.onap.aaf.authz.cm.cert.CSRMeta;\r
30 import org.onap.aaf.authz.cm.cert.StandardFields;\r
31 \r
32 import org.onap.aaf.cadi.cm.CertException;\r
33 import org.onap.aaf.inno.env.Trans;\r
34 \r
35 public abstract class CA {\r
36         private final String name;\r
37         private String[] trustChain;\r
38         private final StandardFields stdFields;\r
39         private MessageDigest messageDigest;\r
40         private final String permType;\r
41         \r
42         protected CA(String name, StandardFields sf, String permType) {\r
43                 this.name = name;\r
44                 stdFields = sf;\r
45                 this.permType = permType;\r
46         }\r
47 \r
48         /* \r
49          * NOTE: These two functions must be called in Protected Constructors during their Construction.\r
50          */\r
51         protected void setTrustChain(String[] trustChain) {\r
52                 this.trustChain = trustChain;\r
53         }\r
54 \r
55         protected void setMessageDigest(MessageDigest md) {\r
56                 messageDigest = md;\r
57         }\r
58 \r
59         /*\r
60          * End Required Constructor calls\r
61          */\r
62 \r
63         public String getName() {\r
64                 return name;\r
65         }\r
66 \r
67         public String[] getTrustChain() {\r
68                 return trustChain;\r
69         }\r
70         \r
71         public String getPermType() {\r
72                 return permType;\r
73         }\r
74         \r
75         public StandardFields stdFields() {\r
76                 return stdFields;\r
77         }\r
78         \r
79         public abstract X509Certificate sign(Trans trans, CSRMeta csrmeta) throws IOException, CertException;\r
80 \r
81         public MessageDigest messageDigest() {\r
82                 return messageDigest;\r
83         }\r
84 }\r