Checkstyle formatting issues fix (Northbound API)
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronLoadBalancerPoolRequest.java
index 2893b133fffe8b4e03b8ebcff308b905cd15fc5c..ce98fac524bd2da2b25a868ccdf8981a60c2db91 100644 (file)
@@ -8,29 +8,26 @@
 
 package org.opendaylight.neutron.northbound.api;
 
-import org.opendaylight.neutron.spi.NeutronLoadBalancerPool;
-
+import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlRootElement;
-import java.util.List;
-
+import org.opendaylight.neutron.spi.NeutronLoadBalancerPool;
 
 @XmlRootElement
 @XmlAccessorType(XmlAccessType.NONE)
 
-public class NeutronLoadBalancerPoolRequest
-    implements INeutronRequest<NeutronLoadBalancerPool> {
+public class NeutronLoadBalancerPoolRequest implements INeutronRequest<NeutronLoadBalancerPool> {
     /**
      * See OpenStack Network API v2.0 Reference for description of
      * http://docs.openstack.org/api/openstack-network/2.0/content/
      */
 
-    @XmlElement(name="pool")
+    @XmlElement(name = "pool")
     NeutronLoadBalancerPool singletonLoadBalancerPool;
 
-    @XmlElement(name="pools")
+    @XmlElement(name = "pools")
     List<NeutronLoadBalancerPool> bulkRequest;
 
     NeutronLoadBalancerPoolRequest() {