Reduce JSR305 proliferation
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMNotificationListener.java
index 7085588e8796d029561d440503ff561d3e20b584..bd5355f8c154b1cb9ebd702f8890211f52c1fe82 100644 (file)
@@ -8,7 +8,7 @@
 package org.opendaylight.controller.md.sal.dom.api;
 
 import java.util.EventListener;
-import javax.annotation.Nonnull;
+import org.eclipse.jdt.annotation.NonNull;
 
 /**
  * Interface implemented by listeners interested in {@link DOMNotification}s.
@@ -20,5 +20,5 @@ public interface DOMNotificationListener extends EventListener {
      *
      * @param notification Received notification
      */
-    void onNotification(@Nonnull DOMNotification notification);
+    void onNotification(@NonNull DOMNotification notification);
 }