At first glance I can see one wrong thing, your entity component name is 
"LoginAccount", so if you want to biject it, you should declare it as follows:


  | @In @Out
  |     public LoginAccount LoginAccount;
  | 
or


  | @In(value="#{LoginAccount}") @Out(value="#{LoginAccount}")
  |     public LoginAccount LoginAccount;
  | 


BTW, check whether your interface has the correct methods corresponding to 
component it is implementing it.

HTH.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4053638#4053638

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4053638
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to