in mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/jobcluster/MantisJobClusterMetadataView.java [121:137]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MantisJobClusterMetadataView that = (MantisJobClusterMetadataView) o;
return lastJobCount == that.lastJobCount &&
disabled == that.disabled &&
isReadyForJobMaster == that.isReadyForJobMaster &&
cronActive == that.cronActive &&
Objects.equals(name, that.name) &&
Objects.equals(jars, that.jars) &&
Objects.equals(sla, that.sla) &&
Objects.equals(parameters, that.parameters) &&
Objects.equals(owner, that.owner) &&
Objects.equals(migrationConfig, that.migrationConfig) &&
Objects.equals(labels, that.labels) &&
Objects.equals(latestVersion, that.latestVersion);
}