Conversation conversation = (Conversation) iterConversations.next();
// This conversation has "access" scope if it has an attached Aspect
// of type ConversationAccessLifetimeAspect. All other conversations
// are not access-scoped and should be ignored here.
ConversationAccessLifetimeAspect aspect =
(ConversationAccessLifetimeAspect)
conversation.getAspect(ConversationAccessLifetimeAspect.class);
if (aspect != null)
{
if (aspect.isAccessed())
{
if (isDebug)
{
log.debug(
"Not clearing accessed conversation " + conversation.getName()