Enable long-running processes in ControllerExecutionBB
[so.git] / common / src / test / java / org / onap / so / client / cds / TestCDSPropertiesImpl.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.cds;
22
23 import java.net.URL;
24
25 public class TestCDSPropertiesImpl implements CDSProperties {
26
27     public TestCDSPropertiesImpl() {
28         // Needed for service loader
29     }
30
31     @Override
32     public String getHost() {
33         return "localhost";
34     }
35
36     @Override
37     public int getPort() {
38         return 9111;
39     }
40
41     @Override
42     public String getBasicAuth() {
43         return "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==";
44     }
45
46     @Override
47     public URL getEndpoint() {
48         return null;
49     }
50
51     @Override
52     public String getSystemName() {
53         return "MSO";
54     }
55
56     @Override
57     public Integer getRetries() {
58         return null;
59     }
60
61     @Override
62     public Long getDelayBetweenRetries() {
63         return null;
64     }
65
66     @Override
67     public boolean mapNotFoundToEmpty() {
68         return false;
69     }
70
71     @Override
72     public int getTimeout() {
73         return 60;
74     }
75
76     @Override
77     public boolean getUseSSL() {
78         return false;
79     }
80
81     @Override
82     public boolean getUseBasicAuth() {
83         return true;
84     }
85
86     @Override
87     public long getKeepAlivePingMinutes() {
88         return 6L;
89     }
90 }