565566567568569570571572573574575
{ ConversationContext context = getConversationContext(); if (context != null) { context.destroy(); } conversationContext.set(null); conversationContext.remove(); }
164165166167168169170171172173174
if (conv.getSessionId().equals(sessionId)) { ConversationContext ctx = getConversationContext(conv); if (ctx != null) { ctx.destroy(); } it.remove(); } } }
206207208209210211212213214215216
if ((System.currentTimeMillis() - conv.getActiveTime()) > timeout) { ConversationContext ctx = getConversationContext(conv); if (ctx != null) { ctx.destroy(); } it.remove(); } } }
432433434435436437438439440441442
} final ConversationContext context = getConversationContext(); if (context != null) { context.destroy(); } if (null != conversationContext) { conversationContext.set(null); conversationContext.remove();
210211212213214215216217218219220
256257258259260261262263264265266
{ if(logger.isLoggable(Level.INFO)) { logger.log(Level.INFO, OWBLogConst.INFO_0011, conv.getId()); } ctx.destroy(); } it.remove(); } }
733734735736737738739740741742743
{ ConversationContext context = getConversationContext(); if (context != null) { context.destroy(); } conversationContexts.set(null); conversationContexts.remove(); }
185186187188189190191192193194195
231232233234235236237238239240241
{ if(logger.wblWillLogInfo()) { logger.info(logger.getTokenString(OWBLogConst.INFO_0011),conv.getId()); } ctx.destroy(); } it.remove(); } }
677678679680681682683684685686687