19 package org.turro.elephant.entities.db;
21 import java.io.Serializable;
22 import java.util.Date;
23 import java.util.Objects;
31 private String entityPath;
32 private String trackedPath;
33 private Date timeTrack;
40 this.entityPath = entityPath;
48 this.trackedPath = trackedPath;
56 this.timeTrack = timeTrack;
62 hash = 53 * hash + Objects.hashCode(this.entityPath);
63 hash = 53 * hash + Objects.hashCode(this.trackedPath);
64 hash = 53 * hash + Objects.hashCode(this.timeTrack);
76 if (getClass() != obj.getClass()) {
80 if (!Objects.equals(
this.entityPath, other.entityPath)) {
83 if (!Objects.equals(
this.trackedPath, other.trackedPath)) {
86 if (!Objects.equals(
this.timeTrack, other.timeTrack)) {
void setTrackedPath(String trackedPath)
void setTimeTrack(Date timeTrack)
boolean equals(Object obj)
void setEntityPath(String entityPath)
static TimeTrackerPK from(TimeTracker tt)