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 44 45 public class RemoveAttributeTag extends TagSupport 46 { 47 private String name = null; 49 50 55 public final int doStartTag() throws JspException 56 { 57 pageContext.getSession().removeAttribute(name); 58 return SKIP_BODY; 59 } 60 61 66 public final void setName(String str) 67 { 68 name = str; 69 } 70 } 71 | Popular Tags |