0ee91cd4325febbd1f558c27c05f2a16fcd641e1
[oom/platform/cert-service.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. 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.certservice.certification.configuration.model;
22
23 public class Cmpv2Server {
24
25     private Authentication authentication;
26     private CaMode caMode;
27     private String caName;
28     private String issuerDN;
29     private String url;
30
31     public Authentication getAuthentication() {
32         return authentication;
33     }
34
35     public void setAuthentication(Authentication authentication) {
36         this.authentication = authentication;
37     }
38
39     public CaMode getCaMode() {
40         return caMode;
41     }
42
43     public void setCaMode(CaMode caMode) {
44         this.caMode = caMode;
45     }
46
47     public String getCaName() {
48         return caName;
49     }
50
51     public void setCaName(String caName) {
52         this.caName = caName;
53     }
54
55     public String getIssuerDN() {
56         return issuerDN;
57     }
58
59     public void setIssuerDN(String issuerDN) {
60         this.issuerDN = issuerDN;
61     }
62
63     public String getUrl() {
64         return url;
65     }
66
67     public void setUrl(String url) {
68         this.url = url;
69     }
70
71 }