summaryrefslogtreecommitdiffstats
path: root/restapi-call-node/provider/src/main
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-17 20:51:22 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-17 20:51:22 +0000
commit3b7596ae5d28461b0c8eb2efc0f6183321eb6f3e (patch)
treeec7c51368d5885b60accd686cac2c8b871a16196 /restapi-call-node/provider/src/main
parent590612b5f7fb2e70518c7cdcb8e81e4d380c3307 (diff)
parentfb7fd136bdbab1799bb932f53feedf349715c39a (diff)
Merge "Sonar Fix: RetryPolicyStore.java"
Diffstat (limited to 'restapi-call-node/provider/src/main')
-rw-r--r--restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicyStore.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicyStore.java b/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicyStore.java
index 775137ff..e4ba5fda 100644
--- a/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicyStore.java
+++ b/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicyStore.java
@@ -4,6 +4,7 @@
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights
* reserved.
+ * Modifications Copyright © 2018 IBM.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,11 +28,13 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RetryPolicyStore {
- private static final Logger log = LoggerFactory.getLogger(RetryPolicyStore.class);
-
HashMap<String, RetryPolicy> retryPolicies;
public String proxyServers;
+ public RetryPolicyStore() {
+ retryPolicies = new HashMap<>();
+ }
+
public String getProxyServers() {
return proxyServers;
}
@@ -42,10 +45,6 @@ public class RetryPolicyStore {
RetryPolicy adminPortalRetry = new RetryPolicy(adminServersArray, adminServersArray.length);
retryPolicies.put("dme2proxy", adminPortalRetry);
}
-
- public RetryPolicyStore() {
- retryPolicies = new HashMap<>();
- }
public RetryPolicy getRetryPolicy(String policyName) {
return (this.retryPolicies.get(policyName));