in mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/server/master/domain/JobClusterDefinitionImpl.java [195:208]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
JobClusterDefinitionImpl that = (JobClusterDefinitionImpl) o;
return isReadyForJobMaster == that.isReadyForJobMaster &&
Objects.equals(name, that.name) &&
Objects.equals(user, that.user) &&
Objects.equals(owner, that.owner) &&
Objects.equals(sla, that.sla) &&
Objects.equals(migrationConfig, that.migrationConfig) &&
Objects.equals(jobClusterConfigs, that.jobClusterConfigs) &&
Objects.equals(parameters, that.parameters) &&
Objects.equals(labels, that.labels);
}