X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fprotocol_plugins%2Fopenflow%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotocol_plugin%2Fopenflow%2FITopologyServiceShimListener.java;h=35ed2e6ad35f307a975b04b2652e8aea7c3e6980;hb=fba140bf09ffbf8694aa41f544caaa331c2ec29a;hp=e90823726c926d70304666055445b06df7ee4558;hpb=de5d869a80fe14b0fa3e96f0cd7e6dccac8b7f7d;p=controller.git diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/ITopologyServiceShimListener.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/ITopologyServiceShimListener.java index e90823726c..35ed2e6ad3 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/ITopologyServiceShimListener.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/ITopologyServiceShimListener.java @@ -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);