b41801d6393cfdcd8ea6d65bfbceb915dd78f211
[aaf/authz.git] / authz-certman / src / main / java / com / att / 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 com.att.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 com.att.authz.cm.cert.CSRMeta;\r
30 import com.att.authz.cm.cert.StandardFields;\r
31 import com.att.cadi.cm.CertException;\r
32 import com.att.inno.env.Trans;\r
33 \r
34 public abstract class CA {\r
35         private final String name;\r
36         private String[] trustChain;\r
37         private final StandardFields stdFields;\r
38         private MessageDigest messageDigest;\r
39         private final String permType;\r
40         \r
41         protected CA(String name, StandardFields sf, String permType) {\r
42                 this.name = name;\r
43                 stdFields = sf;\r
44                 this.permType = permType;\r
45         }\r
46 \r
47         /* \r
48          * NOTE: These two functions must be called in Protected Constructors during their Construction.\r
49          */\r
50         protected void setTrustChain(String[] trustChain) {\r
51                 this.trustChain = trustChain;\r
52         }\r
53 \r
54         protected void setMessageDigest(MessageDigest md) {\r
55                 messageDigest = md;\r
56         }\r
57 \r
58         /*\r
59          * End Required Constructor calls\r
60          */\r
61 \r
62         public String getName() {\r
63                 return name;\r
64         }\r
65 \r
66         public String[] getTrustChain() {\r
67                 return trustChain;\r
68         }\r
69         \r
70         public String getPermType() {\r
71                 return permType;\r
72         }\r
73         \r
74         public StandardFields stdFields() {\r
75                 return stdFields;\r
76         }\r
77         \r
78         public abstract X509Certificate sign(Trans trans, CSRMeta csrmeta) throws IOException, CertException;\r
79 \r
80         public MessageDigest messageDigest() {\r
81                 return messageDigest;\r
82         }\r
83 }\r