in soap-cxf/src/main/java/sample/camel/service/Contact.java [57:62]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Contact contact = (Contact) o;
return Objects.equals(name, contact.name);
}