Checkstyle enforcer
[controller.git] / opendaylight / samples / northbound / loadbalancer / src / main / java / org / opendaylight / controller / samples / loadbalancer / northbound / Pools.java
index abb5495cbf7c6d19c0209d510a42695bc9b95946..74be568018af3c5123f8b96c89ee73cd146940c9 100644 (file)
@@ -19,29 +19,29 @@ import org.opendaylight.controller.samples.loadbalancer.entities.Pool;
 @XmlRootElement
 @XmlAccessorType(XmlAccessType.NONE)
 /**
- * JAX-RS resource for handling details of all the available pools 
+ * JAX-RS resource for handling details of all the available pools
  * in response to respective REST API requests.
  */
 
 public class Pools {
-    
+
     @XmlElement (name="pool")
     Set<Pool> loadBalancerPools;
-    
+
     public Pools() {
     }
-    
+
     public Pools (Set<Pool> loadBalancerPools) {
         this.loadBalancerPools = loadBalancerPools;
     }
-    
+
     /**
      * @return the loadBalancerPools
      */
     public Set<Pool> getLoadBalancerPools() {
         return loadBalancerPools;
     }
-    
+
     /**
      * @param loadBalancerPools the loadBalancerPools to set
      */