blob: 4f7ea365c7b7e2556eda468b1aec885edfbc1019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
/*
* SonarQube
* Copyright (C) 2009-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonarqube.ws.client;
import javax.annotation.Generated;
import org.sonarqube.ws.client.almintegrations.AlmIntegrationsService;
import org.sonarqube.ws.client.almsettings.AlmSettingsService;
import org.sonarqube.ws.client.analysiscache.AnalysisCacheService;
import org.sonarqube.ws.client.analysisreports.AnalysisReportsService;
import org.sonarqube.ws.client.applications.ApplicationsService;
import org.sonarqube.ws.client.authentication.AuthenticationService;
import org.sonarqube.ws.client.batch.BatchService;
import org.sonarqube.ws.client.ce.CeService;
import org.sonarqube.ws.client.components.ComponentsService;
import org.sonarqube.ws.client.developers.DevelopersService;
import org.sonarqube.ws.client.duplications.DuplicationsService;
import org.sonarqube.ws.client.editions.EditionsService;
import org.sonarqube.ws.client.emails.EmailsService;
import org.sonarqube.ws.client.favorites.FavoritesService;
import org.sonarqube.ws.client.github.configuration.GithubConfigurationService;
import org.sonarqube.ws.client.github.provisioning.permissions.GithubPermissionsService;
import org.sonarqube.ws.client.gitlab.configuration.GitlabConfigurationService;
import org.sonarqube.ws.client.gitlab.synchronization.run.GitlabSynchronizationRunService;
import org.sonarqube.ws.client.governancereports.GovernanceReportsService;
import org.sonarqube.ws.client.hotspots.HotspotsService;
import org.sonarqube.ws.client.issues.IssuesService;
import org.sonarqube.ws.client.l10n.L10nService;
import org.sonarqube.ws.client.languages.LanguagesService;
import org.sonarqube.ws.client.measures.MeasuresService;
import org.sonarqube.ws.client.metrics.MetricsService;
import org.sonarqube.ws.client.monitoring.MonitoringService;
import org.sonarqube.ws.client.navigation.NavigationService;
import org.sonarqube.ws.client.newcodeperiods.NewCodePeriodsService;
import org.sonarqube.ws.client.notifications.NotificationsService;
import org.sonarqube.ws.client.permissions.PermissionsService;
import org.sonarqube.ws.client.plugins.PluginsService;
import org.sonarqube.ws.client.projectanalyses.ProjectAnalysesService;
import org.sonarqube.ws.client.projectbadges.ProjectBadgesService;
import org.sonarqube.ws.client.projectbranches.ProjectBranchesService;
import org.sonarqube.ws.client.projectdump.ProjectDumpService;
import org.sonarqube.ws.client.projectlinks.ProjectLinksService;
import org.sonarqube.ws.client.projectpullrequests.ProjectPullRequestsService;
import org.sonarqube.ws.client.projects.ProjectsService;
import org.sonarqube.ws.client.projecttags.ProjectTagsService;
import org.sonarqube.ws.client.push.SonarLintServerPushService;
import org.sonarqube.ws.client.qualitygates.QualitygatesService;
import org.sonarqube.ws.client.qualityprofiles.QualityprofilesService;
import org.sonarqube.ws.client.regulatoryreports.RegulatoryReportsService;
import org.sonarqube.ws.client.roots.RootsService;
import org.sonarqube.ws.client.rules.RulesService;
import org.sonarqube.ws.client.securityreports.SecurityReportsService;
import org.sonarqube.ws.client.server.ServerService;
import org.sonarqube.ws.client.settings.SettingsService;
import org.sonarqube.ws.client.sources.SourcesService;
import org.sonarqube.ws.client.support.SupportService;
import org.sonarqube.ws.client.system.SystemService;
import org.sonarqube.ws.client.updatecenter.UpdatecenterService;
import org.sonarqube.ws.client.usergroups.UserGroupsService;
import org.sonarqube.ws.client.users.UsersService;
import org.sonarqube.ws.client.usertokens.UserTokensService;
import org.sonarqube.ws.client.views.ViewsService;
import org.sonarqube.ws.client.webhooks.WebhooksService;
import org.sonarqube.ws.client.webservices.WebservicesService;
/**
* This class is not public anymore since version 5.5. It is
* created by {@link WsClientFactory}
*
* @since 5.3
*/
@Generated("sonar-ws-generator")
class DefaultWsClient implements WsClient {
private final WsConnector wsConnector;
private final AlmIntegrationsService almIntegrationsService;
private final AlmSettingsService almSettingsService;
private final AnalysisCacheService analysisCacheService;
private final AnalysisReportsService analysisReportsService;
private final ApplicationsService applicationsService;
private final AuthenticationService authenticationService;
private final CeService ceService;
private final ComponentsService componentsService;
private final DevelopersService developersService;
private final DuplicationsService duplicationsService;
private final EditionsService editionsService;
private final EmailsService emailsService;
private final FavoritesService favoritesService;
private final GovernanceReportsService governanceReportsService;
private final HotspotsService hotspotsService;
private final IssuesService issuesService;
private final L10nService l10nService;
private final LanguagesService languagesService;
private final MeasuresService measuresService;
private final MetricsService metricsService;
private final MonitoringService monitoringService;
private final NavigationService navigationService;
private final NewCodePeriodsService newCodePeriodsService;
private final NotificationsService notificationsService;
private final PermissionsService permissionsService;
private final PluginsService pluginsService;
private final ProjectAnalysesService projectAnalysesService;
private final ProjectBadgesService projectBadgesService;
private final ProjectBranchesService projectBranchesService;
private final ProjectDumpService projectDumpService;
private final ProjectLinksService projectLinksService;
private final ProjectPullRequestsService projectPullRequestsService;
private final ProjectTagsService projectTagsService;
private final ProjectsService projectsService;
private final QualitygatesService qualitygatesService;
private final QualityprofilesService qualityprofilesService;
private final RootsService rootsService;
private final RulesService rulesService;
private final ServerService serverService;
private final SettingsService settingsService;
private final SourcesService sourcesService;
private final SupportService supportService;
private final SystemService systemService;
private final UpdatecenterService updatecenterService;
private final UserGroupsService userGroupsService;
private final UserTokensService userTokensService;
private final UsersService usersService;
private final ViewsService viewsService;
private final WebhooksService webhooksService;
private final WebservicesService webservicesService;
private final BatchService batchService;
private final SecurityReportsService securityReportsService;
private final RegulatoryReportsService regulatoryReportsService;
private final SonarLintServerPushService sonarLintPushService;
private final GithubConfigurationService githubConfigurationService;
private final GithubPermissionsService githubPermissionsService;
private final GitlabConfigurationService gitlabConfigurationService;
private final GitlabSynchronizationRunService gitlabSynchronizationRunService;
DefaultWsClient(WsConnector wsConnector) {
this.wsConnector = wsConnector;
this.almIntegrationsService = new AlmIntegrationsService(wsConnector);
this.almSettingsService = new AlmSettingsService(wsConnector);
this.analysisCacheService = new AnalysisCacheService(wsConnector);
this.analysisReportsService = new AnalysisReportsService(wsConnector);
this.applicationsService = new ApplicationsService(wsConnector);
this.authenticationService = new AuthenticationService(wsConnector);
this.ceService = new CeService(wsConnector);
this.componentsService = new ComponentsService(wsConnector);
this.developersService = new DevelopersService(wsConnector);
this.duplicationsService = new DuplicationsService(wsConnector);
this.editionsService = new EditionsService(wsConnector);
this.emailsService = new EmailsService(wsConnector);
this.favoritesService = new FavoritesService(wsConnector);
this.governanceReportsService = new GovernanceReportsService(wsConnector);
this.hotspotsService = new HotspotsService(wsConnector);
this.issuesService = new IssuesService(wsConnector);
this.l10nService = new L10nService(wsConnector);
this.languagesService = new LanguagesService(wsConnector);
this.measuresService = new MeasuresService(wsConnector);
this.metricsService = new MetricsService(wsConnector);
this.monitoringService = new MonitoringService(wsConnector);
this.navigationService = new NavigationService(wsConnector);
this.newCodePeriodsService = new NewCodePeriodsService(wsConnector);
this.notificationsService = new NotificationsService(wsConnector);
this.permissionsService = new PermissionsService(wsConnector);
this.pluginsService = new PluginsService(wsConnector);
this.projectAnalysesService = new ProjectAnalysesService(wsConnector);
this.projectBadgesService = new ProjectBadgesService(wsConnector);
this.projectBranchesService = new ProjectBranchesService(wsConnector);
this.projectDumpService = new ProjectDumpService(wsConnector);
this.projectLinksService = new ProjectLinksService(wsConnector);
this.projectPullRequestsService = new ProjectPullRequestsService(wsConnector);
this.projectTagsService = new ProjectTagsService(wsConnector);
this.projectsService = new ProjectsService(wsConnector);
this.qualitygatesService = new QualitygatesService(wsConnector);
this.qualityprofilesService = new QualityprofilesService(wsConnector);
this.rootsService = new RootsService(wsConnector);
this.rulesService = new RulesService(wsConnector);
this.serverService = new ServerService(wsConnector);
this.settingsService = new SettingsService(wsConnector);
this.sourcesService = new SourcesService(wsConnector);
this.supportService = new SupportService(wsConnector);
this.systemService = new SystemService(wsConnector);
this.updatecenterService = new UpdatecenterService(wsConnector);
this.userGroupsService = new UserGroupsService(wsConnector);
this.userTokensService = new UserTokensService(wsConnector);
this.usersService = new UsersService(wsConnector);
this.viewsService = new ViewsService(wsConnector);
this.webhooksService = new WebhooksService(wsConnector);
this.webservicesService = new WebservicesService(wsConnector);
this.batchService = new BatchService(wsConnector);
this.securityReportsService = new SecurityReportsService(wsConnector);
this.sonarLintPushService = new SonarLintServerPushService(wsConnector);
this.regulatoryReportsService = new RegulatoryReportsService(wsConnector);
this.githubConfigurationService = new GithubConfigurationService(wsConnector);
this.githubPermissionsService = new GithubPermissionsService(wsConnector);
this.gitlabConfigurationService = new GitlabConfigurationService(wsConnector);
this.gitlabSynchronizationRunService = new GitlabSynchronizationRunService(wsConnector);
}
@Override
@Deprecated
public WsConnector wsConnector() {
return wsConnector;
}
@Override
public AlmIntegrationsService almIntegrations() {
return almIntegrationsService;
}
@Override
public AlmSettingsService almSettings() {
return almSettingsService;
}
@Override
public AnalysisCacheService analysisCache() {
return analysisCacheService;
}
@Override
public AnalysisReportsService analysisReports() {
return analysisReportsService;
}
@Override
public ApplicationsService applications() {
return applicationsService;
}
@Override
public AuthenticationService authentication() {
return authenticationService;
}
@Override
public CeService ce() {
return ceService;
}
@Override
public ComponentsService components() {
return componentsService;
}
@Override
public DevelopersService developers() {
return developersService;
}
@Override
public RegulatoryReportsService regulatoryReports() {
return regulatoryReportsService;
}
@Override
public DuplicationsService duplications() {
return duplicationsService;
}
@Override
public EditionsService editions() {
return editionsService;
}
@Override
public EmailsService emails() {
return emailsService;
}
@Override
public FavoritesService favorites() {
return favoritesService;
}
@Override
public GithubConfigurationService githubConfigurationService() {
return githubConfigurationService;
}
@Override
public GithubPermissionsService githubPermissionsService() {
return githubPermissionsService;
}
@Override
public GitlabConfigurationService gitlabConfigurationService() {
return gitlabConfigurationService;
}
@Override
public GitlabSynchronizationRunService gitlabSynchronizationRunService() {
return gitlabSynchronizationRunService;
}
@Override
public GovernanceReportsService governanceReports() {
return governanceReportsService;
}
@Override
public HotspotsService hotspots() {
return hotspotsService;
}
@Override
public IssuesService issues() {
return issuesService;
}
@Override
public L10nService l10n() {
return l10nService;
}
@Override
public LanguagesService languages() {
return languagesService;
}
@Override
public MeasuresService measures() {
return measuresService;
}
@Override
public MetricsService metrics() {
return metricsService;
}
@Override
public MonitoringService monitoring() {
return monitoringService;
}
@Override
public SonarLintServerPushService sonarLintPush() {
return sonarLintPushService;
}
@Override
public NavigationService navigation() {
return navigationService;
}
@Override
public NewCodePeriodsService newCodePeriods() {
return newCodePeriodsService;
}
@Override
public NotificationsService notifications() {
return notificationsService;
}
@Override
public PermissionsService permissions() {
return permissionsService;
}
@Override
public PluginsService plugins() {
return pluginsService;
}
@Override
public ProjectAnalysesService projectAnalyses() {
return projectAnalysesService;
}
@Override
public ProjectBadgesService projectBadges() {
return projectBadgesService;
}
@Override
public ProjectBranchesService projectBranches() {
return projectBranchesService;
}
@Override
public ProjectDumpService projectDump() {
return projectDumpService;
}
@Override
public ProjectLinksService projectLinks() {
return projectLinksService;
}
@Override
public ProjectPullRequestsService projectPullRequests() {
return projectPullRequestsService;
}
@Override
public ProjectTagsService projectTags() {
return projectTagsService;
}
@Override
public ProjectsService projects() {
return projectsService;
}
@Override
public QualitygatesService qualitygates() {
return qualitygatesService;
}
@Override
public QualityprofilesService qualityprofiles() {
return qualityprofilesService;
}
@Override
public RootsService roots() {
return rootsService;
}
@Override
public RulesService rules() {
return rulesService;
}
@Override
public ServerService server() {
return serverService;
}
@Override
public SettingsService settings() {
return settingsService;
}
@Override
public SourcesService sources() {
return sourcesService;
}
@Override
public SupportService support() {
return supportService;
}
@Override
public SystemService system() {
return systemService;
}
@Override
public UpdatecenterService updatecenter() {
return updatecenterService;
}
@Override
public UserGroupsService userGroups() {
return userGroupsService;
}
@Override
public UserTokensService userTokens() {
return userTokensService;
}
@Override
public UsersService users() {
return usersService;
}
@Override
public ViewsService views() {
return viewsService;
}
@Override
public WebhooksService webhooks() {
return webhooksService;
}
@Override
public WebservicesService webservices() {
return webservicesService;
}
@Override
public BatchService batch() {
return batchService;
}
@Override
public SecurityReportsService securityReports() {
return securityReportsService;
}
}
|