X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fmessagebus-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmessagebus%2Fapp%2Fimpl%2FEventSourceTopology.java;h=934056dcab81f2eeb81f387a6d6986c31ec5b629;hp=8f7bc92992dffeda0ca04b3021c367dffc8fdaba;hb=f9814cf027886294b74fb6c8748f4a3e0a545e86;hpb=258d8039ac144aeee2efa7943228c0fc6cdaf651 diff --git a/opendaylight/md-sal/messagebus-impl/src/main/java/org/opendaylight/controller/messagebus/app/impl/EventSourceTopology.java b/opendaylight/md-sal/messagebus-impl/src/main/java/org/opendaylight/controller/messagebus/app/impl/EventSourceTopology.java index 8f7bc92992..934056dcab 100644 --- a/opendaylight/md-sal/messagebus-impl/src/main/java/org/opendaylight/controller/messagebus/app/impl/EventSourceTopology.java +++ b/opendaylight/md-sal/messagebus-impl/src/main/java/org/opendaylight/controller/messagebus/app/impl/EventSourceTopology.java @@ -8,6 +8,7 @@ package org.opendaylight.controller.messagebus.app.impl; +import com.google.common.annotations.VisibleForTesting; import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; @@ -219,5 +220,14 @@ public class EventSourceTopology implements EventAggregatorService, EventSourceR EventSourceService getEventSourceService() { return eventSourceService; } -} + @VisibleForTesting + Map> getRoutedRpcRegistrations() { + return routedRpcRegistrations; + } + + @VisibleForTesting + Map getEventSourceTopicMap() { + return eventSourceTopicMap; + } +}