1 16 17 package org.apache.taglibs.session; 18 19 import java.util.*; 20 import javax.servlet.*; 21 import javax.servlet.http.*; 22 import javax.servlet.jsp.*; 23 import javax.servlet.jsp.tagext.*; 24 25 38 39 public class InvalidateTag extends TagSupport 40 { 41 46 public final int doStartTag() throws JspException 47 { 48 pageContext.getSession().invalidate(); 49 return SKIP_BODY; 50 } 51 } 52 | Popular Tags |