Merge "Bumped version of YANG tools to 0.5.3-SNAPSHOT"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetNwDst.java
index 7db7081ab967c64c480f3a913c961249bfeaaac2..2fa71f5d7b86195d8ae1671e43f69acf8260ed7b 100644 (file)
@@ -16,9 +16,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlRootElement;
 
-import org.apache.commons.lang3.builder.EqualsBuilder;
-import org.apache.commons.lang3.builder.HashCodeBuilder;
-
 /**
  * Set network destination address action
  */
@@ -41,25 +38,40 @@ public class SetNwDst extends Action {
     /**
      * Returns the network address this action will set
      *
-     * @return InetAddress
+     * @return  InetAddress
      */
     public InetAddress getAddress() {
         return address;
     }
-    
+
     @XmlElement (name="address")
     public String getAddressAsString() {
-       return address.getHostAddress();
+        return address.getHostAddress();
     }
 
     @Override
-    public boolean equals(Object other) {
-        return EqualsBuilder.reflectionEquals(this, other);
+    public boolean equals(Object obj) {
+        if (this == obj)
+            return true;
+        if (!super.equals(obj))
+            return false;
+        if (getClass() != obj.getClass())
+            return false;
+        SetNwDst other = (SetNwDst) obj;
+        if (address == null) {
+            if (other.address != null)
+                return false;
+        } else if (!address.equals(other.address))
+            return false;
+        return true;
     }
 
     @Override
     public int hashCode() {
-        return HashCodeBuilder.reflectionHashCode(this);
+        final int prime = 31;
+        int result = super.hashCode();
+        result = prime * result + ((address == null) ? 0 : address.hashCode());
+        return result;
     }
 
     @Override