As I see, it has to be like this:
public class AppUser implements Serializable {
| ...
| private FullName name;
| public FullName getName()
| {
| return name;
| }
| public void setName(FullName name)
| {
| this.name = name;
| }
| ...
|
then your code should work.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975976#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...