in extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/catalog/SchemaResource.java [85:98]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SchemaResource that = (SchemaResource) o;
return Objects.equals(type, that.type)
&& Objects.equals(name, that.name)
&& Objects.equals(className, that.className);
}