Remove deprecated MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / data / statistics / DOMStoreStatsTracker.java
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
deleted file mode 100644 (file)
index 152c37b..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (c) 2014 Brocade Communications Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.sal.core.spi.data.statistics;
-
-import java.util.concurrent.ExecutorService;
-import org.eclipse.jdt.annotation.NonNull;
-import org.opendaylight.yangtools.util.concurrent.QueuedNotificationManager;
-
-/**
- * Interface for a class that tracks statistics for a data store.
- *
- * @author Thomas Pantelis
- */
-@Deprecated(forRemoval = true)
-public interface DOMStoreStatsTracker {
-
-    /**
-     * Sets the executor used for DataChangeListener notifications.
-     *
-     * @param dclExecutor the executor
-     */
-    void setDataChangeListenerExecutor(@NonNull ExecutorService dclExecutor);
-
-    /**
-     * Sets the executor used internally by the data store.
-     *
-     * @param dsExecutor the executor
-     */
-    void setDataStoreExecutor(@NonNull ExecutorService dsExecutor);
-
-    /**
-     * Sets the QueuedNotificationManager use for DataChangeListener notifications.
-     *
-     * @param manager the manager
-     */
-    void setNotificationManager(@NonNull QueuedNotificationManager<?, ?> manager);
-}