It's not a statefull compont but Java Beans but there is conversation scope 
without promotion to long running convesation.
The class is from "drools" example. 

@Name("guess")
@Scope(ScopeType.CONVERSATION)
public class Guess
{

   private Integer value;

   public void setValue(Integer guess)
   {
      this.value = guess;
   }
   
   public Integer getValue()
   {
      return value;
   }

}

I'm starting to realize that if conversation componet is created during the 
existed conversation it will not be destroyed during render phase of JSF 
request, but when the existing convesation end.
Am i right?



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

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

Reply via email to