public boolean equals()

in cxf-soap/src/main/java/org/acme/cxf/soap/pojo/service/Contact.java [66:73]


    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);
    }