X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fflowprogrammer%2FIPluginInFlowProgrammerService.java;h=5157788ce7b58982414fdc91436d8cf24f5eb167;hp=3c40b96cc74d240b116e3746a17820119e8b77b0;hb=541d0a36997f292bb037a2199463431eee538358;hpb=fad07e38e57f1c0d8d687e3bae01532196d6e99d;ds=sidebyside diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/flowprogrammer/IPluginInFlowProgrammerService.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/flowprogrammer/IPluginInFlowProgrammerService.java index 3c40b96cc7..5157788ce7 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/flowprogrammer/IPluginInFlowProgrammerService.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/flowprogrammer/IPluginInFlowProgrammerService.java @@ -13,13 +13,13 @@ import org.opendaylight.controller.sal.utils.Status; /** * @file IPluginOutFlowProgrammer.java - * + * * @brief Flow programmer interface to be implemented by protocol plugins */ public interface IPluginInFlowProgrammerService { /** * Synchronously add a flow to the network node - * + * * @param node * @param flow */ @@ -27,7 +27,7 @@ public interface IPluginInFlowProgrammerService { /** * Synchronously modify existing flow on the switch - * + * * @param node * @param flow */ @@ -35,7 +35,7 @@ public interface IPluginInFlowProgrammerService { /** * Synchronously remove the flow from the network node - * + * * @param node * @param flow */ @@ -43,7 +43,7 @@ public interface IPluginInFlowProgrammerService { /** * Asynchronously add a flow to the network node - * + * * @param node * @param flow * @param rid @@ -52,7 +52,7 @@ public interface IPluginInFlowProgrammerService { /** * Asynchronously modify existing flow on the switch - * + * * @param node * @param flow * @param rid @@ -61,7 +61,7 @@ public interface IPluginInFlowProgrammerService { /** * Asynchronously remove the flow from the network node - * + * * @param node * @param flow * @param rid @@ -70,7 +70,7 @@ public interface IPluginInFlowProgrammerService { /** * Remove all flows present on the network node - * + * * @param node */ Status removeAllFlows(Node node); @@ -78,14 +78,14 @@ public interface IPluginInFlowProgrammerService { /** * Send Barrier message synchronously. The caller will be blocked until the * Barrier reply arrives. - * + * * @param node */ Status syncSendBarrierMessage(Node node); /** * Send Barrier message asynchronously. The caller is not blocked. - * + * * @param node */ Status asyncSendBarrierMessage(Node node);