18 package org.turro.contacts;
26 private String origin;
28 private String destination;
35 this.destination = destination;
51 if (getClass() != obj.getClass()) {
55 if ((this.origin ==
null) ? (other.origin !=
null) : !this.origin.equals(other.origin)) {
58 if ((this.destination ==
null) ? (other.destination !=
null) : !this.destination.equals(other.destination)) {
67 hash = 43 * hash + (this.origin !=
null ? this.origin.hashCode() : 0);
68 hash = 43 * hash + (this.destination !=
null ? this.destination.hashCode() : 0);