X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FBuffers.java;h=99089d9096c9db1e0c37391e790322b093db5f47;hb=fab5707429f1232b70ad1046a2c7abd854e74f72;hp=91f647d45b2b1c7588355bd2880d7e58f4ce7330;hpb=a3a28e8138fa25170b01e6b51a44490f002f6e91;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java index 91f647d45b..99089d9096 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Buffers.java @@ -12,9 +12,6 @@ package org.opendaylight.controller.sal.core; 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; - /** * @file Buffers.java * @@ -24,16 +21,16 @@ import org.apache.commons.lang3.builder.HashCodeBuilder; */ @XmlRootElement public class Buffers extends Property { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; @XmlElement private int buffersValue; - + public static final String BuffersPropName = "buffers"; - + /** * Construct a Buffers property * - * @param buffers the Buffers + * @param buffers the Buffers * @return Constructed object */ public Buffers(int buffers) { @@ -56,15 +53,27 @@ public class Buffers extends Property { public int getValue() { return this.buffersValue; } - + @Override public int hashCode() { - return HashCodeBuilder.reflectionHashCode(this); + final int prime = 31; + int result = super.hashCode(); + result = prime * result + buffersValue; + return result; } @Override public boolean equals(Object obj) { - return EqualsBuilder.reflectionEquals(this, obj); + if (this == obj) + return true; + if (!super.equals(obj)) + return false; + if (getClass() != obj.getClass()) + return false; + Buffers other = (Buffers) obj; + if (buffersValue != other.buffersValue) + return false; + return true; } @Override