Skip to content

Instantly share code, notes, and snippets.

@rbe
Created September 26, 2012 09:38
Show Gist options
  • Save rbe/3787043 to your computer and use it in GitHub Desktop.
Save rbe/3787043 to your computer and use it in GitHub Desktop.
hashCode Method of User Entity
@Override
public int hashCode() {
int result = username.hashCode();
result = 31 * result + (emailAddress != null ? emailAddress.hashCode() : 0);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment