X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fspi%2Fdata%2Fstatistics%2FDOMStoreStatsTracker.java;h=72cc0e23aaf4e543a543c1364b04400e4b6b672e;hp=12713b2f4594d68e8a91a53dc51a7fa1efb21e8a;hb=3ec97cd0a86ad1b79f6854dc6924eb7b06e359a3;hpb=f71a2c712690ecfd1260543ab58d8e16453f7918 diff --git a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/statistics/DOMStoreStatsTracker.java b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/statistics/DOMStoreStatsTracker.java index 12713b2f45..72cc0e23aa 100644 --- a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/statistics/DOMStoreStatsTracker.java +++ b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/statistics/DOMStoreStatsTracker.java @@ -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); }