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        /**
013         * @see javax.servlet.jsp.tagext.Tag#doStartTag()
014         */
015        public int doStartTag() throws JspException {
016            pageContext.clearRemoteUser();
017            return SKIP_BODY;
018        }
019    }