Clean all unused and redundant imports in controller.
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / ITopologyServiceShimListener.java
index e90823726c926d70304666055445b06df7ee4558..35ed2e6ad35f307a975b04b2652e8aea7c3e6980 100644 (file)
@@ -9,11 +9,8 @@
 package org.opendaylight.controller.protocol_plugin.openflow;
 
 import java.util.List;
-import java.util.Set;
 
 import org.opendaylight.controller.sal.core.Edge;
-import org.opendaylight.controller.sal.core.Property;
-import org.opendaylight.controller.sal.core.UpdateType;
 import org.opendaylight.controller.sal.topology.TopoEdgeUpdate;
 
 /**
@@ -22,7 +19,7 @@ import org.opendaylight.controller.sal.topology.TopoEdgeUpdate;
 public interface ITopologyServiceShimListener {
     /**
      * Called to update on Edge in the topology graph
-     * 
+     *
      * @param topoedgeupdateList
      *            List of topoedgeupdates Each topoedgeupdate includes edge, its
      *            Properties ( BandWidth and/or Latency etc) and update type.
@@ -32,7 +29,7 @@ public interface ITopologyServiceShimListener {
     /**
      * Called when an Edge utilization is above the safe threshold configured on
      * the controller
-     * 
+     *
      * @param {@link org.opendaylight.controller.sal.core.Edge}
      */
     public void edgeOverUtilized(Edge edge);
@@ -40,7 +37,7 @@ public interface ITopologyServiceShimListener {
     /**
      * Called when the Edge utilization is back to normal, below the safety
      * threshold level configured on the controller
-     * 
+     *
      * @param {@link org.opendaylight.controller.sal.core.Edge}
      */
     public void edgeUtilBackToNormal(Edge edge);