Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / IReadFilterInternalListener.java
diff --git a/opendaylight/adsal/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java b/opendaylight/adsal/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/IReadFilterInternalListener.java
deleted file mode 100644 (file)
index eb46c60..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (c) 2014 Cisco 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.protocol_plugin.openflow;
-
-import java.util.List;
-
-import org.opendaylight.controller.sal.core.Node;
-import org.opendaylight.controller.sal.reader.FlowOnNode;
-import org.opendaylight.controller.sal.reader.NodeConnectorStatistics;
-import org.opendaylight.controller.sal.reader.NodeDescription;
-import org.opendaylight.controller.sal.reader.NodeTableStatistics;
-
-/**
- * The Interface provides notification of statistics (hardware view) updates to
- * ReaderFilter listeners within the protocol plugin
- */
-public interface IReadFilterInternalListener {
-
-    /**
-     * Notifies the hardware view of all the flow installed on the specified
-     * network node was updated
-     *
-     * @param node
-     *            the network node
-     * @param flowStatsList
-     */
-    public void nodeFlowStatisticsUpdated(Node node, List<FlowOnNode> flowStatsList);
-
-    /**
-     * Notifies the hardware view of the specified network node connectors was
-     * updated
-     *
-     * @param node
-     *            the network node
-     */
-    public void nodeConnectorStatisticsUpdated(Node node, List<NodeConnectorStatistics> ncStatsList);
-
-    /**
-     * Notifies the hardware view of the specified network node tables was
-     * updated
-     *
-     * @param node
-     *            the network node
-     */
-    public void nodeTableStatisticsUpdated(Node node, List<NodeTableStatistics> tableStatsList);
-
-    /**
-     * Notifies the hardware view of all the flow installed on the specified
-     * network node was updated
-     *
-     * @param node
-     *            the network node
-     */
-    public void nodeDescriptionStatisticsUpdated(Node node, NodeDescription nodeDescription);
-}