Seal BaseNotification
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / Notification.java
index 2bb40f371eb53a9adf186f85653fad2f71008030..962cb88946d0e30a74aca5ef3d371e4aa9756b03 100644 (file)
@@ -13,7 +13,7 @@ package org.opendaylight.yangtools.yang.binding;
  * interface. In case they do, {@link EventInstantAware#eventInstant()} returns the time when this notification was
  * generated.
  */
-// FIXME: 6.0.0: narrow implementedInterface()
-public interface Notification extends BaseNotification {
-
+public non-sealed interface Notification<T extends Notification<T> & DataObject> extends BaseNotification {
+    @Override
+    Class<T> implementedInterface();
 }