You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/08/25 16:03:22 UTC

[Myfaces Wiki] Update of "ConversationTag" by BenNeuman

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by BenNeuman:
http://wiki.apache.org/myfaces/ConversationTag

The comment on the change is:
Added simple use of ConversationManager to retrieve conversation scoped bean.

------------------------------------------------------------------------------
  
  Again the ConversationMessager will be used to send a message to the user.
  
+ == ConversationManager ==
+ 
+ ConversationManager allows you to easily retrieve your beans from the converation scope.
+ 
+ {{{
+     MyBean myBean = (MyBean) ConversationManager
+                 .getInstance()
+                 .getConversation("myConversation")
+                 .getBean("myConversationBean");
+ }}}
  
  == PersistenceManagerFactory ==