19 package org.turro.elephant.entities.db;
21 import java.io.Serializable;
22 import java.util.Date;
23 import java.util.Objects;
24 import org.turro.log.SystemLogType;
32 private java.util.Date dateLog;
36 private String generatorPath;
37 private String entityPath;
44 this.dateLog = dateLog;
52 this.logType = logType;
60 this.generatorPath = generatorPath;
68 this.entityPath = entityPath;
74 hash = 79 * hash + Objects.hashCode(this.dateLog);
75 hash = 79 * hash + Objects.hashCode(this.logType);
76 hash = 79 * hash + Objects.hashCode(this.generatorPath);
77 hash = 79 * hash + Objects.hashCode(this.entityPath);
89 if (getClass() != obj.getClass()) {
93 if (!Objects.equals(
this.generatorPath, other.generatorPath)) {
96 if (!Objects.equals(
this.entityPath, other.entityPath)) {
99 if (!Objects.equals(
this.dateLog, other.dateLog)) {
102 if (this.logType != other.logType) {
boolean equals(Object obj)
void setGeneratorPath(String generatorPath)
void setDateLog(Date dateLog)
String getGeneratorPath()
void setEntityPath(String entityPath)
SystemLogType getLogType()
void setLogType(SystemLogType logType)