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%2FPeerBandwidth.java;h=de2877597ff9171dd794ff62b73f9826c8cf866b;hp=a1b436ef1a24b52b2a6d8f7578c91147ea80875d;hb=e2f7aaa41e482815ca1d4495eb85c8653cd903ab;hpb=541d0a36997f292bb037a2199463431eee538358 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 a1b436ef1a..de2877597f 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 @@ -21,27 +21,27 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement 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() {