6ff1bf681593c4fde72ada321aaf4ea2e93a651c
[oom/platform/cert-service.git] / certService / src / main / java / org / onap / aaf / certservice / cmpv2client / api / CmpClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aaf.certservice.cmpv2client.api;
22
23 import java.security.cert.X509Certificate;
24 import java.util.Date;
25 import java.util.List;
26
27 import org.onap.aaf.certservice.certification.configuration.model.Cmpv2Server;
28 import org.onap.aaf.certservice.certification.model.CsrModel;
29 import org.onap.aaf.certservice.cmpv2client.exceptions.CmpClientException;
30
31 /**
32  * This class represent CmpV2Client Interface for obtaining X.509 Digital Certificates in a Public
33  * Key Infrastructure (PKI), making use of Certificate Management Protocol (CMPv2) operating on
34  * newest version: cmp2000(2).
35  */
36 public interface CmpClient {
37
38   /**
39    * Requests for a External Root CA Certificate to be created for the passed public keyPair wrapped
40    * in a CSRMeta with common details, accepts self-signed certificate. Basic Authentication using
41    * IAK/RV, Verification of the signature (proof-of-possession) on the request is performed and an
42    * Exception thrown if verification fails or issue encountered in fetching certificate from CA.
43    *
44    * @param csrModel  Certificate Signing Request model. Must not be {@code null}.
45    * @param server    CMPv2 Server. Must not be {@code null}.
46    * @param notBefore An optional validity to set in the created certificate, Certificate not valid
47    *                  before this date.
48    * @param notAfter  An optional validity to set in the created certificate, Certificate not valid
49    *                  after this date.
50    * @return {@link X509Certificate} The newly created Certificate.
51    * @throws CmpClientException if client error occurs.
52    */
53   List<List<X509Certificate>> createCertificate(
54       CsrModel csrModel,
55       Cmpv2Server server,
56       Date notBefore,
57       Date notAfter)
58       throws CmpClientException;
59
60   /**
61    * Requests for a External Root CA Certificate to be created for the passed public keyPair wrapped
62    * in a CSRMeta with common details, accepts self-signed certificate. Basic Authentication using
63    * IAK/RV, Verification of the signature (proof-of-possession) on the request is performed and an
64    * Exception thrown if verification fails or issue encountered in fetching certificate from CA.
65    *
66    * @param csrModel  Certificate Signing Request Model. Must not be {@code null}.
67    * @param server    CMPv2 server. Must not be {@code null}.
68    * @return {@link X509Certificate} The newly created Certificate.
69    * @throws CmpClientException if client error occurs.
70    */
71   List<List<X509Certificate>> createCertificate(
72       CsrModel csrModel,
73       Cmpv2Server server)
74       throws CmpClientException;
75 }