X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FBandwidth.java;h=30f27793dea433b8c07defe6335c709024eb8184;hp=8048cf882c6c9eec22883b9f3c823b23d8c72149;hb=caee336f062eba4909ba53cbaccdde0714236134;hpb=541d0a36997f292bb037a2199463431eee538358 diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Bandwidth.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Bandwidth.java index 8048cf882c..30f27793de 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Bandwidth.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Bandwidth.java @@ -9,6 +9,8 @@ package org.opendaylight.controller.sal.core; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @@ -22,10 +24,11 @@ import javax.xml.bind.annotation.XmlRootElement; * seconds. */ @XmlRootElement +@XmlAccessorType(XmlAccessType.NONE) public class Bandwidth extends Property { private static final long serialVersionUID = 1L; - @XmlElement + @XmlElement(name="value") protected long bandwidthValue; public static final long BWUNK = 0; @@ -49,7 +52,6 @@ public class Bandwidth extends Property { private Bandwidth() { super(BandwidthPropName); this.bandwidthValue = BWUNK; - ; } public Bandwidth(long bandwidth) { @@ -71,6 +73,7 @@ public class Bandwidth extends Property { super(name); } + @Override public Bandwidth clone() { return new Bandwidth(this.bandwidthValue); } @@ -104,24 +107,25 @@ public class Bandwidth extends Property { @Override public String toString() { - StringBuffer sb = new StringBuffer(); + return "BandWidth[" + getStringValue() + "]"; + } - sb.append("BandWidth["); + @Override + public String getStringValue() { if (this.bandwidthValue == 0) { - sb.append("UnKnown"); + return("UnKnown"); } else if (this.bandwidthValue < BW1Kbps) { - sb.append(this.bandwidthValue + "bps"); + return(this.bandwidthValue + "bps"); } else if (this.bandwidthValue < BW1Mbps) { - sb.append(Long.toString(this.bandwidthValue / BW1Kbps) + "Kbps"); + return(Long.toString(this.bandwidthValue / BW1Kbps) + "Kbps"); } else if (this.bandwidthValue < BW1Gbps) { - sb.append(Long.toString(this.bandwidthValue / BW1Mbps) + "Mbps"); + return(Long.toString(this.bandwidthValue / BW1Mbps) + "Mbps"); } else if (this.bandwidthValue < BW1Tbps) { - sb.append(Long.toString(this.bandwidthValue / BW1Gbps) + "Gbps"); + return(Long.toString(this.bandwidthValue / BW1Gbps) + "Gbps"); } else if (this.bandwidthValue < BW1Pbps) { - sb.append(Long.toString(this.bandwidthValue / BW1Tbps) + "Tbps"); + return(Long.toString(this.bandwidthValue / BW1Tbps) + "Tbps"); + } else { + return(this.bandwidthValue + "bps"); } - - sb.append("]"); - return sb.toString(); } }