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