public List<Entry> All(string projectId)
        {
            Logger.DebugFormat("BEGIN MandatoryUserFilter.All ProjectId={0}", projectId);

            CheckAuthentication();
            var results = new ApiWrapper(Config).Query(projectId, ObjectTypes.UserFilter);

            Logger.DebugFormat("END MandatoryUserFilter.All");
            return results;
        }
예제 #2
0
        public BaseTest()
        {
            throw new Exception("Please fix configuraiton in GoodDataTests.Api.BaseTest constructor.");

            ReportingService = new ApiWrapper(new GoodDataConfig() {
                 Domain = "yourdomain",
                 IgnoreSslErrors = false,
                 Login = "******",
                 Password = "******",
                 ServiceUrl = "https://secure.gooddata.com"
            });
        }