X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Faction%2FSetNwTos.java;h=62dec0cd58198dfcbfa0b77e89a28ab9b97e1d88;hb=84ca16196357ad899e00eceae27ef75eaf899d14;hp=33c96d37385df0a31d36c5ac960e1805f8e789a6;hpb=42210c03b0a4c54706320ba9f55794c0abd4d201;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetNwTos.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetNwTos.java index 33c96d3738..62dec0cd58 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetNwTos.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetNwTos.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 network TOS action */ @@ -24,7 +21,7 @@ import org.apache.commons.lang3.builder.HashCodeBuilder; @XmlAccessorType(XmlAccessType.NONE) public class SetNwTos extends Action { - @XmlElement + @XmlElement private int tos; /* Dummy constructor for JAXB */ @@ -47,13 +44,25 @@ public class SetNwTos 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; + SetNwTos other = (SetNwTos) obj; + if (tos != other.tos) + return false; + return true; } @Override public int hashCode() { - return HashCodeBuilder.reflectionHashCode(this); + final int prime = 31; + int result = super.hashCode(); + result = prime * result + tos; + return result; } @Override