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=4a6019e1fd37f0d5f4e03a31ac46d527de1c9247;hp=44961070a57b0461e2ecaac764d3325f1c212fa6;hb=b4bf55727093657662d8c16a50fa85f87978a586;hpb=9d4ff4c4045fdef38e3940d336d2825df29c4d65 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 44961070a5..4a6019e1fd 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,7 +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; /** @@ -24,19 +24,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. * * @param manager the manager */ - void setNotificationManager(@Nonnull QueuedNotificationManager manager); + void setNotificationManager(@NonNull QueuedNotificationManager manager); }