19 package org.turro.elephant.entities.db;
21 import java.io.Serializable;
22 import java.util.Date;
23 import java.util.Objects;
31 private Date activityDate;
33 private String entityPath;
34 private String activityPath;
41 this.activityDate = activityDate;
49 this.entityPath = entityPath;
57 this.activityPath = activityPath;
63 hash = 37 * hash + Objects.hashCode(this.activityDate);
64 hash = 37 * hash + Objects.hashCode(this.entityPath);
65 hash = 37 * hash + Objects.hashCode(this.activityPath);
77 if (getClass() != obj.getClass()) {
81 if (!Objects.equals(
this.entityPath, other.entityPath)) {
84 if (!Objects.equals(
this.activityPath, other.activityPath)) {
87 return Objects.
equals(this.activityDate, other.activityDate);
void setActivityPath(String activityPath)
boolean equals(Object obj)
void setEntityPath(String entityPath)
void setActivityDate(Date activityDate)