X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fmodel%2FRanDetailsTransport.java;h=1005ae2532007a31db9ba628299730a5609ada2a;hb=425ca107bd805dda906b62fc2b03a6f3c815b8a1;hp=3162056bf7048fd4cdbd9430cd02420767c4b628;hpb=5b686151904e2582ea9ce9d2f1c6abb7a400afa5;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/model/RanDetailsTransport.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/model/RanDetailsTransport.java index 3162056b..1005ae25 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/model/RanDetailsTransport.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/model/RanDetailsTransport.java @@ -17,7 +17,6 @@ * limitations under the License. * ========================LICENSE_END=================================== */ - package org.oransc.ric.portal.dashboard.model; import org.oransc.ric.e2mgr.client.model.GetNodebResponse; @@ -62,35 +61,4 @@ public class RanDetailsTransport { return this; } - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((nodebIdentity == null) ? 0 : nodebIdentity.hashCode()); - result = prime * result + ((nodebStatus == null) ? 0 : nodebStatus.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - RanDetailsTransport other = (RanDetailsTransport) obj; - if (nodebIdentity == null) { - if (other.nodebIdentity != null) - return false; - } else if (!nodebIdentity.equals(other.nodebIdentity)) - return false; - if (nodebStatus == null) { - if (other.nodebStatus != null) - return false; - } else if (!nodebStatus.equals(other.nodebStatus)) - return false; - return true; - } - }