Checkstyle enforcer
[controller.git] / opendaylight / samples / loadbalancer / src / main / java / org / opendaylight / controller / samples / loadbalancer / policies / ILoadBalancingPolicy.java
index d69c63c20081a47e9c654bdeb29b3febccc0806e..f9562d6c523b10da5723f2a6efba3b2798be2a79 100644 (file)
@@ -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