X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Ftopology%2FIPluginOutTopologyService.java;h=32851e86f6236cf6932ce982a504d7626caf5d2b;hb=refs%2Fchanges%2F06%2F1006%2F3;hp=6667628b0dcfc201a2d6e80aad1c49ad03cd97ce;hpb=7c3362df780f30a47d0f6a7b7695360bbb5513bc;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/topology/IPluginOutTopologyService.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/topology/IPluginOutTopologyService.java index 6667628b0d..32851e86f6 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/topology/IPluginOutTopologyService.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/topology/IPluginOutTopologyService.java @@ -9,25 +9,13 @@ package org.opendaylight.controller.sal.topology; 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; - -/** - * @file IPluginOutTopologyService.java - * - * @brief Methods that are invoked from Protocol Plugin toward SAL - * - * Every time a protocol plugin update the topology, it will call this - * service provided by SAL so the update can migrate upward toward the - * applications - */ /** - * Methods that are invoked from Protocol Plugin toward SAL - * + * This interface defines the methods that are invoked from Protocol Plugin + * toward SAL. Every time a protocol plugin update the topology, it will call + * this service provided by SAL so the update can migrate upward toward the + * applications. */ public interface IPluginOutTopologyService { @@ -45,7 +33,8 @@ public interface IPluginOutTopologyService { * on the controller * * @param edge - */ + * The edge which bandwidth usage is above the safety level + */ public void edgeOverUtilized(Edge edge); /** @@ -53,6 +42,7 @@ public interface IPluginOutTopologyService { * threshold level configured on the controller * * @param edge + * The edge which bandwidth usage is back to normal */ public void edgeUtilBackToNormal(Edge edge); }