Package org.jboss.seam.core

Examples of org.jboss.seam.core.ConversationPropagation


                     manager.switchConversation(cid);
                  }
               }
               else
               {
                  ConversationPropagation cp = ConversationPropagation.instance();
                  cp.setConversationId(cid);
                  manager.restoreConversation();
               }
            }
            else
            {
View Full Code Here


   public boolean redirectToExistingConversation(Method method)
   {
      if ( !Manager.instance().isLongRunningConversation() )
      {
         String id = null;
         ConversationPropagation propagation = ConversationPropagation.instance();
         String conversation = propagation != null ? propagation.getConversationName() : null;
        
         if ( method.isAnnotationPresent(Begin.class) )
         {
            id = method.getAnnotation(Begin.class).id();
         }
View Full Code Here

TOP

Related Classes of org.jboss.seam.core.ConversationPropagation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.