Merge "toaster-it: add missing version for maven-paxexam-plugin"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Buffers.java
index 991ed688f2eda4d630d63f15b965983ca07acc97..6d7369d72bb6f25480cc2d40f359b240eeaed8f8 100644 (file)
@@ -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;