2efd74ddc58f142edae395f95732fe314c43d467
[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     private static final String TIMEOUT = "cds.timeout";
34
35     public CDSPropertiesImpl() {
36         // Needed for service loader
37     }
38
39     @Override
40     public String getHost() {
41         return Objects.requireNonNull(UrnPropertiesReader.getVariable(ENDPOINT));
42     }
43
44     @Override
45     public int getPort() {
46         return Integer.parseInt(Objects.requireNonNull(UrnPropertiesReader.getVariable(PORT)));
47     }
48
49     @Override
50     public String getBasicAuth() {
51         return Objects.requireNonNull(UrnPropertiesReader.getVariable(AUTH));
52     }
53
54     @Override
55     public URL getEndpoint() {
56         return null;
57     }
58
59     @Override
60     public String getSystemName() {
61         return "MSO";
62     }
63
64     @Override
65     public Integer getRetries() {
66         return null;
67     }
68
69     @Override
70     public Long getDelayBetweenRetries() {
71         return null;
72     }
73
74     @Override
75     public boolean mapNotFoundToEmpty() {
76         return false;
77     }
78
79     @Override
80     public int getTimeout() {
81         return Integer.parseInt(Objects.requireNonNull(UrnPropertiesReader.getVariable(TIMEOUT)));
82     }
83
84     @Override
85     public boolean getUseSSL() {
86         return false;
87     }
88
89     @Override
90     public boolean getUseBasicAuth() {
91         return true;
92     }
93 }