From: Arundathi Patil Date: Wed, 28 Nov 2018 05:31:24 +0000 (+0530) Subject: Sonar Fix: ChefApiClientFactory.java X-Git-Tag: 1.5.0~413 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=6a03a867bcc22c3bc03c53f05f83d46551427584;p=appc.git Sonar Fix: ChefApiClientFactory.java Fixed sonar issues/code-smells across this file Issue-ID: APPC-1253 Change-Id: Id1060c34f0b99e906dba618d9ea0aebca0fc1beb Signed-off-by: Arundathi Patil --- diff --git a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java index c41142cc0..9a657c980 100644 --- a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java +++ b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java @@ -41,6 +41,9 @@ public class ChefApiClientFactory { private static final EELFLogger logger = EELFManager.getInstance().getLogger(ChefApiClientFactory.class); + private HttpClient httpClient = createChefHttpClient(); + private ChefApiHeaderFactory chefApiHeaderFactory = new ChefApiHeaderFactory(); + private HttpClient createChefHttpClient() { String trustStoreFileName = "/opt/app/bvc/chef/chefServerSSL.jks"; char[] trustStoreCreds = "adminadmin".toCharArray(); @@ -56,9 +59,6 @@ public class ChefApiClientFactory { return null; } - private HttpClient httpClient = createChefHttpClient(); - private ChefApiHeaderFactory chefApiHeaderFactory = new ChefApiHeaderFactory(); - public ChefApiClient create(String endPoint, String organizations, String userId, String pemPath) { return new ChefApiClientImpl(httpClient, endPoint, organizations, (methodName, requestPath, body) -> chefApiHeaderFactory .create(methodName, requestPath, body, userId, organizations, pemPath));