Bug 8231: Fix testChangeListenerRegistration failure
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / ListenerRegistrationMessage.java
index 5cea06b4cb301e691beae65357a3151c7fcc3fa3..3f016a444f26678756d2b4a5dac26ea704011c27 100644 (file)
@@ -7,10 +7,13 @@
  */
 package org.opendaylight.controller.cluster.datastore.messages;
 
+import akka.actor.ActorPath;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
 public interface ListenerRegistrationMessage {
     YangInstanceIdentifier getPath();
 
     boolean isRegisterOnAllInstances();
+
+    ActorPath getListenerActorPath();
 }