X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FName.java;h=ddb663f5901fe8aa45ab2318a8e86615ae3de05d;hb=b4f7106f7b4267b51701eff2d3499c0e12423048;hp=74617c7c5b7f1312451042c2e625dc783a307bb9;hpb=42210c03b0a4c54706320ba9f55794c0abd4d201;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Name.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Name.java index 74617c7c5b..ddb663f590 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Name.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Name.java @@ -9,17 +9,11 @@ package org.opendaylight.controller.sal.core; -import org.apache.commons.lang3.builder.HashCodeBuilder; -import org.apache.commons.lang3.builder.EqualsBuilder; -import org.apache.commons.lang3.builder.ReflectionToStringBuilder; - -import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; /** * The class represents the Name property of an element. - * - * */ @XmlRootElement @SuppressWarnings("serial") @@ -51,16 +45,32 @@ public class Name extends Property { @Override public int hashCode() { - return HashCodeBuilder.reflectionHashCode(this); + final int prime = 31; + int result = super.hashCode(); + result = prime * result + + ((nameValue == null) ? 0 : nameValue.hashCode()); + 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; + Name other = (Name) obj; + if (nameValue == null) { + if (other.nameValue != null) + return false; + } else if (!nameValue.equals(other.nameValue)) + return false; + return true; } @Override public String toString() { - return "Name[" + ReflectionToStringBuilder.toString(this) + "]"; + return "Name[" + nameValue + "]"; } }