in cxf-soap/src/main/java/org/acme/cxf/soap/pojo/service/Address.java [74:100]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof Address)) {
return false;
}
final Address other = (Address) obj;
if (city == null) {
if (other.city != null) {
return false;
}
} else if (!city.equals(other.city)) {
return false;
}
if (street == null) {
if (other.street != null) {
return false;
}
} else if (!street.equals(other.street)) {
return false;
}
return true;
}