From 1012a1bd64489d04a6a1683f1af2db61e3346399 Mon Sep 17 00:00:00 2001 From: Amaresh Kumar Date: Thu, 23 Aug 2018 20:14:27 +0530 Subject: Fixed Sonar issues Fixed Sonar issues in 3 files. Issue-ID: DMAAP-636 Change-Id: I2d53361e61f838ff5ba379a21bdfcedbd3fc5df3 Signed-off-by: Amaresh Kumar --- .../org/onap/dmaap/datarouter/node/NodeMain.java | 18 ++++++------ .../org/onap/dmaap/datarouter/node/NodeUtils.java | 32 +++++++++++----------- 2 files changed, 25 insertions(+), 25 deletions(-) (limited to 'datarouter-node/src') diff --git a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeMain.java b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeMain.java index 8aaa577c..006dc88c 100644 --- a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeMain.java +++ b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeMain.java @@ -39,7 +39,7 @@ public class NodeMain { private NodeMain() { } - private static Logger LOGGER = Logger.getLogger("org.onap.dmaap.datarouter.node.NodeMain"); + private static Logger nodeMainLogger = Logger.getLogger("org.onap.dmaap.datarouter.node.NodeMain"); private static class WaitForConfig implements Runnable { @@ -56,15 +56,15 @@ public class NodeMain { synchronized void waitForConfig() { localNodeConfigManager.registerConfigTask(this); while (!localNodeConfigManager.isConfigured()) { - LOGGER.info("NODE0003 Waiting for Node Configuration"); + nodeMainLogger.info("NODE0003 Waiting for Node Configuration"); try { wait(); - } catch (Exception e) { - LOGGER.debug("NodeMain: waitForConfig exception. Exception Message:- " +e.getMessage()); + } catch (Exception exception) { + nodeMainLogger.debug("NodeMain: waitForConfig exception. Exception Message:- " + exception.toString(), exception); } } localNodeConfigManager.deregisterConfigTask(this); - LOGGER.info("NODE0004 Node Configuration Data Received"); + nodeMainLogger.info("NODE0004 Node Configuration Data Received"); } } @@ -85,10 +85,10 @@ public class NodeMain { * property. By default, it is "etc/node.properties". */ public static void main(String[] args) throws Exception { - LOGGER.info("NODE0001 Data Router Node Starting"); + nodeMainLogger.info("NODE0001 Data Router Node Starting"); IsFrom.setDNSCache(); nodeConfigManager = NodeConfigManager.getInstance(); - LOGGER.info("NODE0002 I am " + nodeConfigManager.getMyName()); + nodeMainLogger.info("NODE0002 I am " + nodeConfigManager.getMyName()); (new WaitForConfig(nodeConfigManager)).waitForConfig(); delivery = new Delivery(nodeConfigManager); Server server = new Server(); @@ -111,7 +111,7 @@ public class NodeMain { sslContextFactory.setKeyManagerPassword(nodeConfigManager.getKPass()); /* Skip SSLv3 Fixes */ sslContextFactory.addExcludeProtocols("SSLv3"); - LOGGER.info("Excluded protocols node-" + Arrays.toString(sslContextFactory.getExcludeProtocols())); + nodeMainLogger.info("Excluded protocols node-" + Arrays.toString(sslContextFactory.getExcludeProtocols())); /* End of SSLv3 Fixes */ HttpConfiguration httpsConfiguration = new HttpConfiguration(httpConfiguration); @@ -136,7 +136,7 @@ public class NodeMain { ctxt.setContextPath("/"); server.setHandler(ctxt); ctxt.addServlet(new ServletHolder(new NodeServlet()), "/*"); - LOGGER.info("NODE0005 Data Router Node Activating Service"); + nodeMainLogger.info("NODE0005 Data Router Node Activating Service"); server.start(); server.join(); } diff --git a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeUtils.java b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeUtils.java index ea2ce34b..230afd4c 100644 --- a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeUtils.java +++ b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeUtils.java @@ -47,13 +47,13 @@ import com.att.eelf.configuration.EELFManager; * Utility functions for the data router node */ public class NodeUtils { - private static EELFLogger EELFLOGGER = EELFManager.getInstance().getLogger("org.onap.dmaap.datarouter.node.NodeUtils"); - private static Logger LOGGER = Logger.getLogger("org.onap.dmaap.datarouter.node.NodeUtils"); - private static SimpleDateFormat LOGDATE; + private static EELFLogger eelfLogger = EELFManager.getInstance().getLogger("org.onap.dmaap.datarouter.node.NodeUtils"); + private static Logger nodeUtilsLogger = Logger.getLogger("org.onap.dmaap.datarouter.node.NodeUtils"); + private static SimpleDateFormat logDate; static { - LOGDATE = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"); - LOGDATE.setTimeZone(TimeZone.getTimeZone("GMT")); + logDate = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"); + logDate.setTimeZone(TimeZone.getTimeZone("GMT")); } private NodeUtils() { @@ -95,8 +95,8 @@ public class NodeUtils { md.update(node.getBytes()); md.update(key.getBytes()); return (getAuthHdr(node, base64Encode(md.digest()))); - } catch (Exception e) { - LOGGER.error("Exception in generating Credentials for given node name:= " + e.getMessage()); + } catch (Exception exception) { + nodeUtilsLogger.error("Exception in generating Credentials for given node name:= " + exception.toString(), exception); return (null); } } @@ -117,12 +117,12 @@ public class NodeUtils { ks.load(fileInputStream, kspass.toCharArray()); } } catch(IOException ioException) { - LOGGER.error("Exception occurred while opening FileInputStream",ioException); + nodeUtilsLogger.error("Exception occurred while opening FileInputStream",ioException); return (null); } catch (Exception e) { setIpAndFqdnForEelf("getCanonicalName"); - EELFLOGGER.error(EelfMsgs.MESSAGE_KEYSTORE_LOAD_ERROR, ksfile, e.toString()); - LOGGER.error("NODE0401 Error loading my keystore file + " + ksfile + " " + e.toString(), e); + eelfLogger.error(EelfMsgs.MESSAGE_KEYSTORE_LOAD_ERROR, ksfile, e.toString()); + nodeUtilsLogger.error("NODE0401 Error loading my keystore file + " + ksfile + " " + e.toString(), e); return (null); } return (getCanonicalName(ks)); @@ -157,7 +157,7 @@ public class NodeUtils { } } } catch (Exception e) { - LOGGER.error("NODE0402 Error extracting my name from my keystore file " + e.toString(), e); + nodeUtilsLogger.error("NODE0402 Error extracting my name from my keystore file " + e.toString(), e); } return (null); } @@ -171,8 +171,8 @@ public class NodeUtils { public static byte[] getInetAddress(String ip) { try { return (InetAddress.getByName(ip).getAddress()); - } catch (Exception e) { - LOGGER.error("Exception in generating byte array for given IP address := " + e.getMessage()); + } catch (Exception exception) { + nodeUtilsLogger.error("Exception in generating byte array for given IP address := " + exception.toString(), exception); } return (null); } @@ -232,7 +232,7 @@ public class NodeUtils { * Format a logging timestamp as yyyy-mm-ddThh:mm:ss.mmmZ */ public static synchronized String logts(Date when) { - return (LOGDATE.format(when)); + return (logDate.format(when)); } /* Method prints method name, server FQDN and IP Address of the machine in EELF logs @@ -245,8 +245,8 @@ public class NodeUtils { try { MDC.put(MDC_SERVER_FQDN, InetAddress.getLocalHost().getHostName()); MDC.put(MDC_SERVER_IP_ADDRESS, InetAddress.getLocalHost().getHostAddress()); - } catch (Exception e) { - LOGGER.error("Exception in generating byte array for given IP address := " + e.getMessage()); + } catch (Exception exception) { + nodeUtilsLogger.error("Exception in generating byte array for given IP address := " + exception.toString(), exception); } } -- cgit 1.2.3-korg