if (this == otherOb) {
return true;
}
if (!(otherOb instanceof antipatterns.ejbs.AddressBookEntryKey)) {
return false;
}
antipatterns.ejbs.AddressBookEntryKey other = (antipatterns.ejbs.AddressBookEntryKey) otherOb;
return (
(entryId == other.entryId)
);