internal ServletPrincipal(BaseWorkerRequest req)
        {
            _request = req;
            string authType = req.GetAuthType();

            if (authType == null)
            {
                authType = String.Empty;
            }
            _identity = new GenericIdentity(req.GetRemoteUser(), authType);
        }