Merge "restore a couple of fields' access to public"
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / LocalCAImpl.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;
22
23 import java.io.IOException;
24
25 import org.onap.aaf.auth.cm.ca.CA;
26 import org.onap.aaf.auth.cm.ca.X509andChain;
27 import org.onap.aaf.auth.cm.cert.CSRMeta;
28 import org.onap.aaf.cadi.Access;
29 import org.onap.aaf.cadi.configure.CertException;
30 import org.onap.aaf.misc.env.Trans;
31
32 public class LocalCAImpl extends CA {
33
34     protected LocalCAImpl(Access access, String caName, String env) throws IOException, CertException {
35         super(access, caName, env);
36         // TODO Auto-generated constructor stub
37     }
38
39     public LocalCAImpl(Access access, final String name, final String env, final String[][] params) throws IOException, CertException {
40         super(access, name, env);
41     }
42
43     @Override
44     public X509andChain sign(Trans trans, CSRMeta csrmeta) throws IOException, CertException {
45         // TODO Auto-generated method stub
46         return null;
47     }
48 }