001    package railo.runtime.tag;
002    
003    import railo.runtime.exp.ExpressionException;
004    import railo.runtime.ext.tag.TagImpl;
005    
006    /**
007    * Authenticates a user, setting a security context for the application. 
008    *                       For more information, see the descriptions of IsAuthenticated and AuthenticatedContext.
009    *
010    *
011    *
012    **/
013    public final class Authenticate extends TagImpl {
014    
015            /**
016            * constructor for the tag class
017             * @throws ExpressionException
018            **/
019            public Authenticate() throws ExpressionException {
020                    throw new ExpressionException("tag cfauthenticate is deprecated");
021            }
022    }