[jboss-user] [JBoss Seam] - Re: s:selectItems, entity-query, convertEntity stop working
sztank
do-not-reply at jboss.com
Mon Nov 12 18:37:13 EST 2007
Thanks!
That was the reason. I do not have equals method. Now it is working.
BTW in my equals method i will have to check if obj is not null otherwise I have NullPointerException - don't understand why..
| public boolean equals(Object obj) {
| if(obj != null) {
| return (this.client == ((Client)obj).getClient());
| }
| else return false;
| }
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4103912#4103912
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4103912
More information about the jboss-user
mailing list