X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FBuffers.java;h=4c6e08102b214341f237e01d6280d375aaf30eeb;hb=0007635e8377230bf3befc836f1e05b6e075251b;hp=991ed688f2eda4d630d63f15b965983ca07acc97;hpb=5d121f4f8efb3f08ced19d6378c45166701bf318;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java index 991ed688f2..4c6e08102b 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java @@ -21,16 +21,16 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement public class Buffers extends Property { - private static final long serialVersionUID = 1L; - @XmlElement + private static final long serialVersionUID = 1L; + @XmlElement(name="value") private int buffersValue; - + public static final String BuffersPropName = "buffers"; - + /** * Construct a Buffers property * - * @param buffers the Buffers + * @param buffers the Buffers * @return Constructed object */ public Buffers(int buffers) { @@ -46,6 +46,7 @@ public class Buffers extends Property { this.buffersValue = 0; } + @Override public Buffers clone() { return new Buffers(this.buffersValue); } @@ -53,7 +54,7 @@ public class Buffers extends Property { public int getValue() { return this.buffersValue; } - + @Override public int hashCode() { final int prime = 31; @@ -80,4 +81,9 @@ public class Buffers extends Property { public String toString() { return "Buffers[" + buffersValue + "]"; } + + @Override + public String getStringValue() { + return Integer.toHexString(buffersValue); + } }