X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsamples%2Floadbalancer%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsamples%2Floadbalancer%2Fpolicies%2FILoadBalancingPolicy.java;h=f9562d6c523b10da5723f2a6efba3b2798be2a79;hp=d69c63c20081a47e9c654bdeb29b3febccc0806e;hb=541d0a36997f292bb037a2199463431eee538358;hpb=fad07e38e57f1c0d8d687e3bae01532196d6e99d diff --git a/opendaylight/samples/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/policies/ILoadBalancingPolicy.java b/opendaylight/samples/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/policies/ILoadBalancingPolicy.java index d69c63c200..f9562d6c52 100644 --- a/opendaylight/samples/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/policies/ILoadBalancingPolicy.java +++ b/opendaylight/samples/loadbalancer/src/main/java/org/opendaylight/controller/samples/loadbalancer/policies/ILoadBalancingPolicy.java @@ -14,16 +14,16 @@ import org.opendaylight.controller.samples.loadbalancer.entities.VIP; * All new load balancer policies must implement this interface. */ public interface ILoadBalancingPolicy { - + /** * Returns IP address of the next pool member from the pool * to which the load balancer service can direct incoming packets. * @param source source on the packet * @param dest virtual IP (VIP) that is used as destination on the packet - * @return IP address of the next pool member which will serve + * @return IP address of the next pool member which will serve * all incoming traffic destined for the given VIP and with the given source * information */ public String getPoolMemberForClient(Client source, VIP dest); - + } \ No newline at end of file