sort out signature of extraceField method
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / NeutronL2gateway.java
index a4b266a294b175eafcfb634f4136d1d4fef35568..88a6afdaa3a4a640d04716777e33fedb9ca2edfb 100644 (file)
@@ -12,12 +12,12 @@ import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.Iterator;
 import java.util.List;
-
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlRootElement;
 
 @XmlRootElement(name = "l2gateway")
-public class NeutronL2gateway extends NeutronObject implements Serializable, INeutronObject{
+public class NeutronL2gateway extends NeutronObject<NeutronL2gateway>
+        implements Serializable, INeutronObject<NeutronL2gateway> {
     private static final long serialVersionUID = 1L;
 
     @XmlElement(name = "name")
@@ -67,12 +67,8 @@ public class NeutronL2gateway extends NeutronObject implements Serializable, INe
 
     @Override
     public String toString() {
-        return "NeutronL2Gateway [" +
-                "id = " + uuid +
-                ", name = " + l2gatewayName +
-                ", tenant_id = " + tenantID +
-                ", devices = " + neutronL2gatewayDevices +
-                "]";
+        return "NeutronL2Gateway [" + "id = " + uuid + ", name = " + l2gatewayName + ", tenant_id = " + tenantID
+                + ", devices = " + neutronL2gatewayDevices + "]";
     }
 
-}
\ No newline at end of file
+}