Add toString() to Neutron_IPs
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / Neutron_IPs.java
index b79e4325500d01549363e24e97cbc58c8581f7a0..1292c2995b2d119a4d6803a5684ff8be2ccd6424 100644 (file)
@@ -52,4 +52,11 @@ public class Neutron_IPs extends ConfigurationObject implements Serializable {
     public void setSubnetUUID(String subnetUUID) {
         this.subnetUUID = subnetUUID;
     }
+
+    @Override
+    public String toString() {
+        return "Neutron_IPs{" +
+               "ipAddress='" + ipAddress + '\'' +
+               ", subnetUUID='" + subnetUUID + '\'' + "}";
+    }
 }