19 package org.turro.elephant.entities.db;
25 public class RelatedPK implements java.io.Serializable {
27 private String origin;
29 private String destination;
36 this.destination = destination;
52 if (getClass() != obj.getClass()) {
56 if ((this.origin ==
null) ? (other.origin !=
null) : !this.origin.equals(other.origin)) {
59 if ((this.destination ==
null) ? (other.destination !=
null) : !this.destination.equals(other.destination)) {
68 hash = 43 * hash + (this.origin !=
null ? this.origin.hashCode() : 0);
69 hash = 43 * hash + (this.destination !=
null ? this.destination.hashCode() : 0);