aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-12-20 22:41:19 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2018-12-20 22:41:45 +0530
commit7643a4addb45ffed94adc3bc9257f3fc9619e56f (patch)
tree61a8b827da57f0120d2c4f84edd0c0ea67d8f6dc
parentec31fc3ff55b6a2e4fa3b2d04a4339c9d49cf9c9 (diff)
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>
-rw-r--r--ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncUebConfiguration.java24
1 files changed, 12 insertions, 12 deletions
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 0500954d..0088a14a 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 @@ public class SdncUebConfiguration implements IConfiguration{
private SdncArtifactMap artifactMap = SdncArtifactMap.getInstance();
- public String getAsdcApiNamespace() {
- return asdcApiNamespace;
- }
-
private String incomingDir = null;
private String archiveDir = null;
@@ -74,14 +71,6 @@ public class SdncUebConfiguration implements IConfiguration{
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 class SdncUebConfiguration implements IConfiguration{
}
}
+ public String getAsdcApiNamespace() {
+ return asdcApiNamespace;
+ }
+
+ public String getXsltPathList() {
+ return xsltPathList;
+ }
+
+ public String getOverrideFile() {
+ return overrideFile;
+ }
public void init(String propDir) throws IOException {
String propPath;