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