[jboss-user] [JBoss Seam] - Re: Nested conversation question
gavin.king@jboss.com
do-not-reply at jboss.com
Fri Nov 3 11:47:31 EST 2006
Yep, good work mate, I used:
public void unlockConversation()
| {
| ConversationEntry ce = getCurrentConversationEntry();
| if (ce!=null)
| {
| ce.unlock();
| }
| else if ( isNestedConversation() )
| {
| ConversationEntries.instance().getConversationEntry( getParentConversationId() ).unlock();
| }
| }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983025#3983025
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3983025
More information about the jboss-user
mailing list