DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32364>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32364





------- Additional Comments From [EMAIL PROTECTED]  2004-11-23 20:25 -------
This might be a case where the pattern:

        return new HashCodeBuilder(17,37).
                append(id).
                append(name).
                toHashCode();

is not a fit the domain object. If the "id" is unique you can just return the id
for the hash code. The general case where the id AND the name need to be used as
a  primary key is going to be a problem for hash codes in general I think since
we only have the int range.

Anyone else care to comment please?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to