Can U explain me for what reason u use @Factory here? What this do?

  | @Factory(name="gameAction",scope=SESSION)
  | public GameAction initGameAction() {
  | 
  |     GameAction result = new GameAction(someId,someName);    
  |     return result;  
  | }
  | 

Maybe better way is to create in method my bean and outject using @Out like

  |   //in some other bean
  |   @Out
  |   private GameAction gameAction;
  | 






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

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

Reply via email to