Proxy DOMNotificationRouter to the mdsal implementation
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMNotification.java
index d99001ea5c9b44be38d6237f39ad5f507df955e7..d30e0f243fa137d82e148a86b1eed8b6665f8c20 100644 (file)
@@ -7,25 +7,11 @@
  */
 package org.opendaylight.controller.md.sal.dom.api;
 
-import javax.annotation.Nonnull;
-import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
-import org.opendaylight.yangtools.yang.model.api.SchemaPath;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 
 /**
  * A single YANG notification.
  */
-public interface DOMNotification {
-    /**
-     * Return the type of this notification.
-     *
-     * @return Notification type.
-     */
-    @Nonnull SchemaPath getType();
-
-    /**
-     * Return the body of this notification.
-     *
-     * @return Notification body.
-     */
-    @Nonnull ContainerNode getBody();
+@SuppressFBWarnings(value = "NM_SAME_SIMPLE_NAME_AS_INTERFACE", justification = "Migration")
+public interface DOMNotification extends org.opendaylight.mdsal.dom.api.DOMNotification {
 }