X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Faction%2FSetTpDst.java;h=c32c346307a8fb3d0ebb8aca9c9387ac24eac096;hb=7c3362df780f30a47d0f6a7b7695360bbb5513bc;hp=fb7c824494fc3b1aca82859b81045adaa7e7e204;hpb=42210c03b0a4c54706320ba9f55794c0abd4d201;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java index fb7c824494..c32c346307 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java @@ -14,9 +14,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 destination transport port action */ @@ -24,7 +21,7 @@ import org.apache.commons.lang3.builder.HashCodeBuilder; @XmlAccessorType(XmlAccessType.NONE) public class SetTpDst extends Action { - @XmlElement + @XmlElement private int port; /* Dummy constructor for JAXB */ @@ -46,13 +43,25 @@ public class SetTpDst extends Action { } @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; + SetTpDst other = (SetTpDst) obj; + if (port != other.port) + return false; + return true; } @Override public int hashCode() { - return HashCodeBuilder.reflectionHashCode(this); + final int prime = 31; + int result = super.hashCode(); + result = prime * result + port; + return result; } @Override