Update db process part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / SslConfInfo.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo;
17
18 public class SslConfInfo {
19         private String trustStore;
20         private String trustStoreType;
21         private String trustStorePass;
22         private String keyStore;
23         private String keyStoreType;
24         private String keyStorePass;
25
26         public String getTrustStore() {
27                 return trustStore;
28         }
29
30         public void setTrustStore(String trustStore) {
31                 this.trustStore = trustStore;
32         }
33
34         public String getTrustStoreType() {
35                 return trustStoreType;
36         }
37
38         public void setTrustStoreType(String trustStoreType) {
39                 this.trustStoreType = trustStoreType;
40         }
41
42         public String getTrustStorePass() {
43                 return trustStorePass;
44         }
45
46         public void setTrustStorePass(String trustStorePass) {
47                 this.trustStorePass = trustStorePass;
48         }
49
50         public String getKeyStore() {
51                 return keyStore;
52         }
53
54         public void setKeyStore(String keyStore) {
55                 this.keyStore = keyStore;
56         }
57
58         public String getKeyStoreType() {
59                 return keyStoreType;
60         }
61
62         public void setKeyStoreType(String keyStoreType) {
63                 this.keyStoreType = keyStoreType;
64         }
65
66         public String getKeyStorePass() {
67                 return keyStorePass;
68         }
69
70         public void setKeyStorePass(String keyStorePass) {
71                 this.keyStorePass = keyStorePass;
72         }
73
74 }