data-generator/data-generator-plugin/src/main/java/it/cavallium/data/generator/plugin/DetailsConfiguration.java

28 lines
518 B
Java
Raw Normal View History

2023-01-18 02:00:02 +01:00
package it.cavallium.data.generator.plugin;
2022-02-20 02:56:51 +01:00
2022-07-19 02:10:14 +02:00
import java.util.Objects;
2022-02-20 02:56:51 +01:00
public class DetailsConfiguration {
public String changelog;
2022-07-19 02:10:14 +02:00
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DetailsConfiguration that = (DetailsConfiguration) o;
return Objects.equals(changelog, that.changelog);
}
@Override
public int hashCode() {
2022-07-19 02:45:20 +02:00
int hash = 0;
hash += ConfigUtils.hashCode(changelog);
return hash;
2022-07-19 02:10:14 +02:00
}
2022-02-20 02:56:51 +01:00
}