sort out signature of extraceField method
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / NeutronL2gateway.java
index d1ca0596595e0352f44d017614dfbc8f5a6570d4..88a6afdaa3a4a640d04716777e33fedb9ca2edfb 100644 (file)
@@ -16,7 +16,8 @@ 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")
@@ -70,4 +71,4 @@ public class NeutronL2gateway extends NeutronObject implements Serializable, INe
                 + ", devices = " + neutronL2gatewayDevices + "]";
     }
 
-}
\ No newline at end of file
+}