X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FPeerBandwidth.java;h=d01e528b57d0a54ecdf5982a105ffd11419b1811;hb=3720603339c7b3614235a90ce5215636aa373ad5;hp=de2877597ff9171dd794ff62b73f9826c8cf866b;hpb=5bb507f89fcefee470c47d50bbd5d146a038ad64;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/PeerBandwidth.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/PeerBandwidth.java index de2877597f..d01e528b57 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/PeerBandwidth.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/PeerBandwidth.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.XmlRootElement; /** @@ -20,28 +22,29 @@ import javax.xml.bind.annotation.XmlRootElement; * bits per seconds. */ @XmlRootElement +@XmlAccessorType(XmlAccessType.NONE) public class PeerBandwidth extends Bandwidth { - private static final long serialVersionUID = 1L; - - public static final String PeerBandwidthPropName = "peerBandwidth"; - - public PeerBandwidth(long value) { - super(PeerBandwidthPropName); - this.bandwidthValue = value; - } - - /* + private static final long serialVersionUID = 1L; + + public static final String PeerBandwidthPropName = "peerBandwidth"; + + public PeerBandwidth(long value) { + super(PeerBandwidthPropName); + this.bandwidthValue = value; + } + + /* * Private constructor used for JAXB mapping */ private PeerBandwidth() { - super(PeerBandwidthPropName); - this.bandwidthValue = 0; + super(PeerBandwidthPropName); + this.bandwidthValue = 0; } - public PeerBandwidth clone() { - return new PeerBandwidth(this.bandwidthValue); + public PeerBandwidth clone() { + return new PeerBandwidth(this.bandwidthValue); } - + @Override public String toString() {