diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2019-12-18 10:58:08 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-01-13 20:46:33 +0100 |
commit | 4aaebff02491ab87fec3df8e3a9b83e37ef5c963 (patch) | |
tree | 03f8f10766f4b55d6920ff30c2f279d966257949 /sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java | |
parent | c8908618870b5a65bba9d61f730b14928f6c1002 (diff) | |
download | sonarqube-4aaebff02491ab87fec3df8e3a9b83e37ef5c963.tar.gz sonarqube-4aaebff02491ab87fec3df8e3a9b83e37ef5c963.zip |
SONAR-12723 Generate hotspots WS lib
Diffstat (limited to 'sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java')
-rw-r--r-- | sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java index 3750817c07c..f00373232bf 100644 --- a/sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java +++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/WsClient.java @@ -34,6 +34,7 @@ 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.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; @@ -123,6 +124,8 @@ public interface WsClient { GovernanceReportsService governanceReports(); + HotspotsService hotspots(); + IssuesService issues(); L10nService l10n(); |