001 package railo.runtime.tag; 002 003 import javax.servlet.jsp.JspException; 004 005 import railo.runtime.ext.tag.TagImpl; 006 007 /** 008 * 009 */ 010 public final class Logout extends TagImpl { 011 012 @Override 013 public int doStartTag() throws JspException { 014 pageContext.clearRemoteUser(); 015 return SKIP_BODY; 016 } 017 }