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%2FSupportedBandwidth.java;h=cd6589ed6d3da0d492fa1217dff859dc3dd56d89;hp=5cb7b33890b04e6f491a4dc0f1b39f69c77bde2e;hb=eb9e1983a0fce7e4a381eff33e40cae957cddf53;hpb=0cfc417107d5b5b1bafdd7ee1fe8e3ba052d5488;ds=sidebyside diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/SupportedBandwidth.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/SupportedBandwidth.java index 5cb7b33890..cd6589ed6d 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/SupportedBandwidth.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/SupportedBandwidth.java @@ -22,24 +22,24 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement public class SupportedBandwidth extends Bandwidth { - private static final long serialVersionUID = 1L; - public static final String SupportedBandwidthPropName = "supportedBandwidth"; - - public SupportedBandwidth(long value) { - super(SupportedBandwidthPropName); - this.bandwidthValue = value; - } - - /* + private static final long serialVersionUID = 1L; + public static final String SupportedBandwidthPropName = "supportedBandwidth"; + + public SupportedBandwidth(long value) { + super(SupportedBandwidthPropName); + this.bandwidthValue = value; + } + + /* * Private constructor used for JAXB mapping */ private SupportedBandwidth() { - super(SupportedBandwidthPropName); - this.bandwidthValue = 0; + super(SupportedBandwidthPropName); + this.bandwidthValue = 0; } - - public SupportedBandwidth clone() { - return new SupportedBandwidth(this.bandwidthValue); + + public SupportedBandwidth clone() { + return new SupportedBandwidth(this.bandwidthValue); } @Override