3a235f63d4025080540b83a84fdeba64fb8f4b77
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / json / JsonSchemaProviderConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2019 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.schemaif.json;
22
23
24 public class JsonSchemaProviderConfig {
25     
26     private String schemaServiceBaseUrl;
27     private String schemaServiceCertFile;
28     private String schemaServiceCertPwd;
29     private String serviceName;
30     
31     public String getSchemaServiceBaseUrl() {
32         return schemaServiceBaseUrl;
33     }
34     public void setSchemaServiceBaseUrl(String schemaServiceBaseUrl) {
35         this.schemaServiceBaseUrl = schemaServiceBaseUrl;
36     }
37     
38     public String getSchemaServiceCertFile() {
39         return schemaServiceCertFile;
40     }
41     public void setSchemaServiceCertFile(String schemaServiceCertFile) {
42         this.schemaServiceCertFile = schemaServiceCertFile;
43     }
44     
45     public String getSchemaServiceCertPwd() {
46         return schemaServiceCertPwd;
47     }
48     public void setSchemaServiceCertPwd(String schemaServiceCertPwd) {
49         this.schemaServiceCertPwd = schemaServiceCertPwd;
50     }
51     
52     public String getServiceName() {
53         return serviceName;
54     }
55     public void setServiceName(String serviceName) {
56         this.serviceName = serviceName;
57     }
58 }