19 package org.turro.elephant.entities.db;
21 import java.io.Serializable;
22 import java.util.Objects;
30 private String entityPath;
31 private String contactId;
38 this.entityPath = entityPath;
46 this.contactId = contactId;
52 hash = 89 * hash + Objects.hashCode(this.entityPath);
53 hash = 89 * hash + Objects.hashCode(this.contactId);
65 if (getClass() != obj.getClass()) {
69 if (!Objects.equals(
this.entityPath, other.entityPath)) {
72 if (!Objects.equals(
this.contactId, other.contactId)) {
void setContactId(String contactId)
boolean equals(Object obj)
void setEntityPath(String entityPath)