in soap-cxf/src/main/java/sample/camel/service/Address.java [66:92]
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;
}