X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetworkconfiguration%2Fneutron%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetworkconfig%2Fneutron%2FNeutron_IPs.java;h=fe5d45b3a6fea57a7d08591ee42f461fba87757a;hp=e862a59e8a7bef2772645d9567661be9716a49fd;hb=3927509ec3ecfa32a51b725d2b7155d425f5b877;hpb=d71e327e51db32e967f7ebcb186e148f37f28117 diff --git a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/Neutron_IPs.java b/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/Neutron_IPs.java index e862a59e8a..fe5d45b3a6 100644 --- a/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/Neutron_IPs.java +++ b/opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/Neutron_IPs.java @@ -15,6 +15,7 @@ import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; + @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) public class Neutron_IPs implements Serializable { @@ -50,4 +51,11 @@ public class Neutron_IPs implements Serializable { public void setSubnetUUID(String subnetUUID) { this.subnetUUID = subnetUUID; } + + @Override + public String toString() { + return "Neutron_IPs{" + + "ipAddress='" + ipAddress + '\'' + + ", subnetUUID='" + subnetUUID + '\'' + "}"; + } }