Add toString() to Neutron_IPs 71/10471/1
authorFlavio Fernandes <ffernand@redhat.com>
Thu, 28 Aug 2014 21:03:38 +0000 (17:03 -0400)
committerFlavio Fernandes <ffernand@redhat.com>
Thu, 28 Aug 2014 21:03:38 +0000 (17:03 -0400)
Change-Id: I6b9f8af8e1b65073a6a1fab3fe6eeb46c5c0cfcb
Signed-off-by: Flavio Fernandes <ffernand@redhat.com>
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;
     }
     public void setSubnetUUID(String subnetUUID) {
         this.subnetUUID = subnetUUID;
     }
+
+    @Override
+    public String toString() {
+        return "Neutron_IPs{" +
+               "ipAddress='" + ipAddress + '\'' +
+               ", subnetUUID='" + subnetUUID + '\'' + "}";
+    }
 }
 }