From fd418f91c04aa27ec647f8228c880ad0540719b6 Mon Sep 17 00:00:00 2001 From: Mariusz Sobucki Date: Thu, 13 Sep 2018 18:23:24 +0100 Subject: [PATCH] Fix_Old_Vulnerabilities_in_NodeConfig Change-Id: Ie3c2758b34853283a5be40d3cdd3514f0d2cccae Signed-off-by: Mariusz Sobucki Issue-ID: DMAAP-775 --- .../org/onap/dmaap/datarouter/node/NodeConfig.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeConfig.java b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeConfig.java index 91b90657..265aafd3 100644 --- a/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeConfig.java +++ b/datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeConfig.java @@ -431,18 +431,18 @@ public class NodeConfig { } private static class Redirection { - public SubnetMatcher snm; - public String user; - public String[] nodes; + SubnetMatcher snm; + String user; + String[] nodes; } private static class Feed { - public String loginfo; - public String status; - public SubnetMatcher[] subnets; - public Hashtable authusers = new Hashtable(); - public Redirection[] redirections; - public Target[] targets; + String loginfo; + String status; + SubnetMatcher[] subnets; + Hashtable authusers = new Hashtable(); + Redirection[] redirections; + Target[] targets; } private Hashtable params = new Hashtable(); -- 2.16.6