Sonar fix: SdncUebConfiguration.java
Fixed sonar issues/code-smells across this file
Issue-ID: CCSDK-866
Change-Id: Icac8e0347d068902217e813a302db69b1bf5cc47
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
diff --git a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebConfiguration.java b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebConfiguration.java
index 0500954..0088a14 100644
--- a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebConfiguration.java
+++ b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebConfiguration.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.
@@ -58,10 +59,6 @@
private SdncArtifactMap artifactMap = SdncArtifactMap.getInstance();
- public String getAsdcApiNamespace() {
- return asdcApiNamespace;
- }
-
private String incomingDir = null;
private String archiveDir = null;
@@ -74,14 +71,6 @@
private String xsltPathList;
- public String getXsltPathList() {
- return xsltPathList;
- }
-
- public String getOverrideFile() {
- return overrideFile;
- }
-
public SdncUebConfiguration() {
String propDir = System.getenv(SDNC_CONFIG_DIR);
if (propDir == null) {
@@ -103,6 +92,17 @@
}
}
+ public String getAsdcApiNamespace() {
+ return asdcApiNamespace;
+ }
+
+ public String getXsltPathList() {
+ return xsltPathList;
+ }
+
+ public String getOverrideFile() {
+ return overrideFile;
+ }
public void init(String propDir) throws IOException {
String propPath;