Add CDS client
[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
28     public CDSPropertiesImpl() {
29         // Needed for service loader
30     }
31
32     @Override
33     public String getHost() {
34         return Objects.requireNonNull(UrnPropertiesReader.getVariable(ENDPOINT));
35     }
36
37     @Override
38     public int getPort() {
39         return Integer.parseInt(Objects.requireNonNull(UrnPropertiesReader.getVariable(PORT)));
40     }
41
42     @Override
43     public URL getEndpoint() {
44         return null;
45     }
46
47     @Override
48     public String getSystemName() {
49         return "MSO";
50     }
51
52     @Override
53     public Integer getRetries() {
54         return null;
55     }
56
57     @Override
58     public Long getDelayBetweenRetries() {
59         return null;
60     }
61
62     @Override
63     public boolean mapNotFoundToEmpty() {
64         return false;
65     }
66 }