Make topomanager members protected instead of package protected 98/2198/4
authorAlissa Bonas <abonas@redhat.com>
Sun, 27 Oct 2013 19:24:13 +0000 (21:24 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Sun, 3 Nov 2013 19:00:44 +0000 (19:00 +0000)
Change-Id: I258c5d4df8314091abc8e76f1dc4918358c2f2c3
Signed-off-by: Alissa Bonas <abonas@redhat.com>
opendaylight/topologymanager/implementation/src/main/java/org/opendaylight/controller/topologymanager/internal/TopologyManagerImpl.java

index 941eb74019b4adf35656a35d0d629ff4bf53244b..a410f99ba9c8d619a3c2771be95f09f410b270a3 100644 (file)
@@ -75,10 +75,10 @@ public class TopologyManagerImpl implements
         IListenTopoUpdates,
         IObjectReader,
         CommandProvider {
         IListenTopoUpdates,
         IObjectReader,
         CommandProvider {
-    static final String TOPOEDGESDB = "topologymanager.edgesDB";
-    static final String TOPOHOSTSDB = "topologymanager.hostsDB";
-    static final String TOPONODECONNECTORDB = "topologymanager.nodeConnectorDB";
-    static final String TOPOUSERLINKSDB = "topologymanager.userLinksDB";
+    protected static final String TOPOEDGESDB = "topologymanager.edgesDB";
+    protected static final String TOPOHOSTSDB = "topologymanager.hostsDB";
+    protected static final String TOPONODECONNECTORDB = "topologymanager.nodeConnectorDB";
+    protected static final String TOPOUSERLINKSDB = "topologymanager.userLinksDB";
     private static final Logger log = LoggerFactory.getLogger(TopologyManagerImpl.class);
     private ITopologyService topoService;
     private IClusterContainerServices clusterContainerService;
     private static final Logger log = LoggerFactory.getLogger(TopologyManagerImpl.class);
     private ITopologyService topoService;
     private IClusterContainerServices clusterContainerService;