Example #1
0
 /** @see HttpSessionListener#sessionDestroyed(HttpSessionEvent) */
 public void sessionDestroyed(HttpSessionEvent se) {
   ServletSessionUtil.destroy(se.getSession());
 }
Example #2
0
 /** @see HttpSessionListener#sessionCreated(HttpSessionEvent) */
 public void sessionCreated(HttpSessionEvent se) {
   ServletSessionUtil.create(se.getSession());
 }