Fixing warnings in the sal sub-project.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / PeerBandwidth.java
index de2877597ff9171dd794ff62b73f9826c8cf866b..d01e528b57d0a54ecdf5982a105ffd11419b1811 100644 (file)
@@ -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() {