X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frouting%2FIRouting.java;h=d06dce6576014be4e3e1334067d91c3db56283af;hb=18fa9cb41678400d1decd007a66fc1f7be894f66;hp=80950e66a5289fffca8ebbc12fd0fec31ae01525;hpb=2ed2e3f076e2d3bdab22fdcb94672d850c6c64a8;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IRouting.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IRouting.java index 80950e66a5..d06dce6576 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IRouting.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IRouting.java @@ -17,32 +17,48 @@ import org.opendaylight.controller.sal.core.Path; /** * This interface provides APIs to manage and query the routing information - * + * */ public interface IRouting { /** * Returns a Path leading from the source to the destination - * @param src: source Node - * @param dst: destination Node - * @return: Path + * + * @param src + * source {@link org.opendaylight.controller.sal.core.Node} + * + * @param dst + * destination + * {@link org.opendaylight.controller.sal.core.Node} + * @return: the {@link org.opendaylight.controller.sal.core.Path} */ public Path getRoute(Node src, Node dst); /** * Returns a Max ThroughPut Path leading from the source to the destination - * @param src: source Node - * @param dst: destination Node - * @return: MTPath + * + * @param src + * source {@link org.opendaylight.controller.sal.core.Node} + * + * @param dst + * destination + * {@link org.opendaylight.controller.sal.core.Node} + * @return: the max throughput {@link org.opendaylight.controller.sal.core.Path} */ public Path getMaxThroughputRoute(Node src, Node dst); /** - * Returns a Path leading from the source to the destination that meets the specified bandwidth - * @param src: source Node - * @param dst: destination Node - * @param Bw: bandwidth - * @return: Path + * Returns a Path leading from the source to the destination that meets the + * specified bandwidth + * + * @param src + * source {@link org.opendaylight.controller.sal.core.Node} + * + * @param dst + * destination {@link org.opendaylight.controller.sal.core.Node} + * @param Bw + * the bandwidth + * @return: the {@link org.opendaylight.controller.sal.core.Path} */ public Path getRoute(Node src, Node dst, Short Bw); @@ -58,9 +74,12 @@ public interface IRouting { /** * Initialization For Max Throughput - * @param EdgeWeightMap: Map containing Edge and Corresponding - * Weight. Optional Param - if null, implementation specific weight - * calculation will be used. + * + * @param EdgeWeightMap + * Map containing + * {@link org.opendaylight.controller.sal.core.Edge} and + * Corresponding Weight. Optional Param - if null, implementation + * specific weight calculation will be used. */ public void initMaxThroughput(Map EdgeWeightMap);