Example #1
0
 public void invokeDestructionCallback() {
   LogFactory.getLog(getClass())
       .info(
           "#### invokeDestructionCallback() "
               + getBeanName()
               + " "
               + scope.getConversationId());
   HttpSessionBindingListener listener =
       (HttpSessionBindingListener) scope.getDestructionCallback(getBeanName());
   listener.valueUnbound(null); // cause unbound
 }
Example #2
0
 public String getConversationId() {
   return scope.getConversationId();
 }