Fixing warnings in the sal sub-project.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / PeerBandwidth.java
index 557e2b3dd2aed7690b70820bfb973d821dbc38e5..d01e528b57d0a54ecdf5982a105ffd11419b1811 100644 (file)
@@ -9,11 +9,10 @@
 
 package org.opendaylight.controller.sal.core;
 
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlRootElement;
 
-import org.apache.commons.lang3.builder.EqualsBuilder;
-import org.apache.commons.lang3.builder.HashCodeBuilder;
-
 /**
  * @file   PeerBandWidth.java
  *
@@ -23,38 +22,30 @@ import org.apache.commons.lang3.builder.HashCodeBuilder;
  *  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);  
-    }
-       
-       @Override
-    public int hashCode() {
-        return HashCodeBuilder.reflectionHashCode(this);
+        public PeerBandwidth clone() {
+                return new PeerBandwidth(this.bandwidthValue);
     }
 
-    @Override
-    public boolean equals(Object obj) {
-        return EqualsBuilder.reflectionEquals(this, obj);
-    }  
-    
+
     @Override
     public String toString() {
         StringBuffer sb = new StringBuffer();