diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-08-21 06:54:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-21 06:54:29 +0000 |
commit | 3465d8cbd60ae580e1a677b569f020af40a47777 (patch) | |
tree | e7065db4a21560a1c9c9bab9cf5f3a30b2674677 /vid-app-common/src/main/java/org/onap | |
parent | 8af834cdee882fb2c7ff55626978f3df2e0e6004 (diff) | |
parent | c9d1d1a1ad3fd3bc9e6c53da4a8d176ec73ba81e (diff) |
Merge "Sonar Fix - HttpsAuthClient.java"
Diffstat (limited to 'vid-app-common/src/main/java/org/onap')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/aai/util/HttpsAuthClient.java | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/aai/util/HttpsAuthClient.java b/vid-app-common/src/main/java/org/onap/vid/aai/util/HttpsAuthClient.java index af181eb1f..391c295e0 100644 --- a/vid-app-common/src/main/java/org/onap/vid/aai/util/HttpsAuthClient.java +++ b/vid-app-common/src/main/java/org/onap/vid/aai/util/HttpsAuthClient.java @@ -51,6 +51,12 @@ public class HttpsAuthClient { private final SystemPropertyHelper systemPropertyHelper; private final SSLContextProvider sslContextProvider; + private final String certFilePath; + FeatureManager featureManager; + + /** The logger. */ + static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(org.onap.vid.aai.util.HttpsAuthClient.class); + public HttpsAuthClient(String certFilePath, SystemPropertyHelper systemPropertyHelper, SSLContextProvider sslContextProvider, FeatureManager featureManager) { this.certFilePath = certFilePath; @@ -59,13 +65,6 @@ public class HttpsAuthClient { this.featureManager = featureManager; } - private final String certFilePath; - - FeatureManager featureManager; - - /** The logger. */ - static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(org.onap.vid.aai.util.HttpsAuthClient.class); - /** * Gets the client. |