Merge "Add support for CDS basic-auth"
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / restproperties / CDSPropertiesImpl.java
1 /*
2  * Copyright (C) 2019 Bell Canada.
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.so.client.restproperties;
17
18 import java.net.URL;
19 import java.util.Objects;
20 import org.onap.so.bpmn.core.UrnPropertiesReader;
21 import org.onap.so.client.cds.CDSProperties;
22
23 public class CDSPropertiesImpl implements CDSProperties {
24
25     private static final String ENDPOINT = "cds.endpoint";
26     private static final String PORT = "cds.port";
27     private static final String AUTH = "cds.auth";
28
29     public CDSPropertiesImpl() {
30         // Needed for service loader
31     }
32
33     @Override
34     public String getHost() {
35         return Objects.requireNonNull(UrnPropertiesReader.getVariable(ENDPOINT));
36     }
37
38     @Override
39     public int getPort() {
40         return Integer.parseInt(Objects.requireNonNull(UrnPropertiesReader.getVariable(PORT)));
41     }
42
43     @Override
44     public String getBasicAuth() {
45         return Objects.requireNonNull(UrnPropertiesReader.getVariable(AUTH));
46     }
47
48     @Override
49     public URL getEndpoint() {
50         return null;
51     }
52
53     @Override
54     public String getSystemName() {
55         return "MSO";
56     }
57
58     @Override
59     public Integer getRetries() {
60         return null;
61     }
62
63     @Override
64     public Long getDelayBetweenRetries() {
65         return null;
66     }
67
68     @Override
69     public boolean mapNotFoundToEmpty() {
70         return false;
71     }
72 }