diff options
author | Ram Koya <rk541m@att.com> | 2018-09-14 14:00:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-14 14:00:41 +0000 |
commit | 4e61cfafc9b10ca604b8e2c7ec0272246502fa82 (patch) | |
tree | ee5d6c049c27ae0f1616bda10f88bc6ac7973ffd /datarouter-node/src/main/java/org/onap | |
parent | ce5518a60269499bc1bc77ac7ac48d844db7359a (diff) | |
parent | fd418f91c04aa27ec647f8228c880ad0540719b6 (diff) |
Merge "Fix_Old_Vulnerabilities_in_NodeConfig"
Diffstat (limited to 'datarouter-node/src/main/java/org/onap')
-rw-r--r-- | datarouter-node/src/main/java/org/onap/dmaap/datarouter/node/NodeConfig.java | 18 |
1 files 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<String, String> authusers = new Hashtable<String, String>(); - public Redirection[] redirections; - public Target[] targets; + String loginfo; + String status; + SubnetMatcher[] subnets; + Hashtable<String, String> authusers = new Hashtable<String, String>(); + Redirection[] redirections; + Target[] targets; } private Hashtable<String, String> params = new Hashtable<String, String>(); |