@@ -206,24 +206,24 @@ protected GoodData(GoodDataEndpoint endpoint, Authentication authentication, Goo
206206
207207 restTemplate = createRestTemplate (endpoint , httpClient );
208208
209- accountService = new AccountService (getRestTemplate ());
210- projectService = new ProjectService (getRestTemplate (), accountService );
211- metadataService = new MetadataService (getRestTemplate ());
212- modelService = new ModelService (getRestTemplate ());
213- gdcService = new GdcService (getRestTemplate ());
209+ accountService = new AccountService (getRestTemplate (), settings );
210+ projectService = new ProjectService (getRestTemplate (), accountService , settings );
211+ metadataService = new MetadataService (getRestTemplate (), settings );
212+ modelService = new ModelService (getRestTemplate (), settings );
213+ gdcService = new GdcService (getRestTemplate (), settings );
214214 dataStoreService = new DataStoreService (getHttpClient (), getRestTemplate (), gdcService , endpoint .toUri ());
215- datasetService = new DatasetService (getRestTemplate (), dataStoreService );
216- exportService = new ExportService (getRestTemplate (), endpoint );
217- reportService = new ReportService (exportService , getRestTemplate ());
218- processService = new ProcessService (getRestTemplate (), accountService , dataStoreService );
219- warehouseService = new WarehouseService (getRestTemplate ());
220- connectorService = new ConnectorService (getRestTemplate (), projectService );
221- notificationService = new NotificationService (getRestTemplate ());
222- exportImportService = new ExportImportService (getRestTemplate ());
223- featureFlagService = new FeatureFlagService (getRestTemplate ());
224- outputStageService = new OutputStageService (getRestTemplate ());
225- projectTemplateService = new ProjectTemplateService (getRestTemplate ());
226- auditEventService = new AuditEventService (getRestTemplate (), accountService );
215+ datasetService = new DatasetService (getRestTemplate (), dataStoreService , settings );
216+ exportService = new ExportService (getRestTemplate (), endpoint , settings );
217+ reportService = new ReportService (exportService , getRestTemplate (), settings );
218+ processService = new ProcessService (getRestTemplate (), accountService , dataStoreService , settings );
219+ warehouseService = new WarehouseService (getRestTemplate (), settings );
220+ connectorService = new ConnectorService (getRestTemplate (), projectService , settings );
221+ notificationService = new NotificationService (getRestTemplate (), settings );
222+ exportImportService = new ExportImportService (getRestTemplate (), settings );
223+ featureFlagService = new FeatureFlagService (getRestTemplate (), settings );
224+ outputStageService = new OutputStageService (getRestTemplate (), settings );
225+ projectTemplateService = new ProjectTemplateService (getRestTemplate (), settings );
226+ auditEventService = new AuditEventService (getRestTemplate (), accountService , settings );
227227 }
228228
229229 static RestTemplate createRestTemplate (GoodDataEndpoint endpoint , HttpClient httpClient ) {
0 commit comments