19 package org.turro.attach.entity;
21 import java.io.Serializable;
22 import java.util.Objects;
30 private String entityPath;
31 private String contactId;
32 private String documentation;
39 this.entityPath = entityPath;
47 this.contactId = contactId;
55 this.documentation = documentation;
61 hash = 37 * hash + Objects.hashCode(this.entityPath);
62 hash = 37 * hash + Objects.hashCode(this.contactId);
63 hash = 37 * hash + Objects.hashCode(this.documentation);
75 if (getClass() != obj.getClass()) {
79 if (!Objects.equals(
this.entityPath, other.entityPath)) {
82 if (!Objects.equals(
this.contactId, other.contactId)) {
85 return Objects.
equals(this.documentation, other.documentation);
String getDocumentation()
void setDocumentation(String documentation)
boolean equals(Object obj)
void setContactId(String contactId)
void setEntityPath(String entityPath)