Stop overriding method just to call super.
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / IReadFilterInternalListener.java
index d5f4d31f2bfd0e8ec88867efbae8b0e01c9e9e82..9622af97ef3fa66e5b376b4640894978b926aae4 100644 (file)
@@ -9,38 +9,45 @@ import org.opendaylight.controller.sal.reader.NodeDescription;
 import org.opendaylight.controller.sal.reader.NodeTableStatistics;
 
 /**
- * The Interface provides statistics updates to ReaderFilter listeners within
- * the protocol plugin
+ * 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
+     * Notifies the hardware view of all the flow installed on the specified
+     * network node was updated
+     *
      * @param node
-     * @return
+     *            the network node
+     * @param flowStatsList
      */
     public void nodeFlowStatisticsUpdated(Node node, List<FlowOnNode> flowStatsList);
 
     /**
-     * Notifies the hardware view of the specified network node connector
+     * Notifies the hardware view of the specified network node connectors was
+     * updated
+     *
      * @param node
-     * @return
+     *            the network node
      */
     public void nodeConnectorStatisticsUpdated(Node node, List<NodeConnectorStatistics> ncStatsList);
 
     /**
-     * Notifies all the table statistics for a node
+     * Notifies the hardware view of the specified network node tables was
+     * updated
+     *
      * @param node
-     * @return
+     *            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
+     * Notifies the hardware view of all the flow installed on the specified
+     * network node was updated
+     *
      * @param node
-     * @return
+     *            the network node
      */
     public void nodeDescriptionStatisticsUpdated(Node node, NodeDescription nodeDescription);
-
-
 }