gov.va.medora.mdo.dao.vista.VistaUserDao.getOptions C# (CSharp) Method

getOptions() private method

private getOptions ( string file, string uid ) : AbstractPermission>.Dictionary
file string
uid string
return AbstractPermission>.Dictionary
        internal Dictionary<string, AbstractPermission> getOptions(string file, string uid)
        {
            if (StringUtils.isEmpty(file) || StringUtils.isEmpty(uid))
            {
                throw new ArgumentNullException("Missing arguments");
            }
            DdrLister query = buildGetOptionsQuery(file, uid);
            string[] response = query.execute();
            return toOptions(response);
        }
VistaUserDao