Deprecate all MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / data / statistics / DOMStoreStatsTracker.java
index 12713b2f4594d68e8a91a53dc51a7fa1efb21e8a..72cc0e23aaf4e543a543c1364b04400e4b6b672e 100644 (file)
@@ -9,9 +9,7 @@
 package org.opendaylight.controller.sal.core.spi.data.statistics;
 
 import java.util.concurrent.ExecutorService;
-
-import javax.annotation.Nonnull;
-
+import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.util.concurrent.QueuedNotificationManager;
 
 /**
@@ -19,6 +17,7 @@ import org.opendaylight.yangtools.util.concurrent.QueuedNotificationManager;
  *
  * @author Thomas Pantelis
  */
+@Deprecated
 public interface DOMStoreStatsTracker {
 
     /**
@@ -26,19 +25,19 @@ public interface DOMStoreStatsTracker {
      *
      * @param dclExecutor the executor
      */
-    void setDataChangeListenerExecutor( @Nonnull ExecutorService dclExecutor );
+    void setDataChangeListenerExecutor(@NonNull ExecutorService dclExecutor);
 
     /**
      * Sets the executor used internally by the data store.
      *
      * @param dsExecutor the executor
      */
-    void setDataStoreExecutor( @Nonnull ExecutorService dsExecutor );
+    void setDataStoreExecutor(@NonNull ExecutorService dsExecutor);
 
     /**
-     * Sets the QueuedNotificationManager use for DataChangeListener notifications,
+     * Sets the QueuedNotificationManager use for DataChangeListener notifications.
      *
      * @param manager the manager
      */
-    void setNotificationManager( @Nonnull QueuedNotificationManager<?, ?> manager );
+    void setNotificationManager(@NonNull QueuedNotificationManager<?, ?> manager);
 }