diff options
author | Lukasz Jarocki <lukasz.jarocki@sonarsource.com> | 2021-03-19 10:37:35 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-03-22 20:08:42 +0000 |
commit | 7a44195cc2a377d5dbfa17ae55105ea29a68318a (patch) | |
tree | 79c7cd4bd72d07760292eac00d526b6f60c79f04 /sonar-ws | |
parent | 6d715f437d2ab740d47387856b6c415b02dae9e8 (diff) | |
download | sonarqube-7a44195cc2a377d5dbfa17ae55105ea29a68318a.tar.gz sonarqube-7a44195cc2a377d5dbfa17ae55105ea29a68318a.zip |
SONAR-14598 Added ITs and generated code related to Bitbucket Cloud Ws Tests
Diffstat (limited to 'sonar-ws')
2 files changed, 103 insertions, 0 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java index f109c608153..326de453b8c 100644 --- a/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java +++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java @@ -250,6 +250,24 @@ public class AlmSettingsService extends BaseService { } /** + * + * This is part of the internal API. + * This is a POST request. + * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/alm_settings/set_bitbucketcloud_binding">Further information about this action online (including a response example)</a> + * @since 8.7 + */ + public void setBitbucketcloudBinding(SetBitbucketCloudBindingRequest request) { + call( + new PostRequest(path("set_bitbucketcloud_binding")) + .setParam("almSetting", request.getAlmSetting()) + .setParam("monorepo", request.getMonorepo()) + .setParam("project", request.getProject()) + .setParam("repository", request.getRepository()) + .setMediaType(MediaTypes.JSON) + ).content(); + } + + /** * This is a POST request. * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/alm_settings/set_github_binding">Further information about this action online (including a response example)</a> * @since 8.1 diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java new file mode 100644 index 00000000000..88e052d1973 --- /dev/null +++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java @@ -0,0 +1,85 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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.almsettings; + +import javax.annotation.Generated; + +/** + * This is part of the internal API. + * This is a POST request. + * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/alm_settings/set_bitbucketcloud_binding">Further information about this action online (including a response example)</a> + * @since 8.7 + */ +@Generated("sonar-ws-generator") +public class SetBitbucketCloudBindingRequest { + + private String almSetting; + private String monorepo; + private String project; + private String repository; + + /** + * This is a mandatory parameter. + */ + public SetBitbucketCloudBindingRequest setAlmSetting(String almSetting) { + this.almSetting = almSetting; + return this; + } + + public String getAlmSetting() { + return almSetting; + } + + /** + * This is a mandatory parameter. + */ + public SetBitbucketCloudBindingRequest setMonorepo(String monorepo) { + this.monorepo = monorepo; + return this; + } + + public String getMonorepo() { + return monorepo; + } + + /** + * This is a mandatory parameter. + */ + public SetBitbucketCloudBindingRequest setProject(String project) { + this.project = project; + return this; + } + + public String getProject() { + return project; + } + + /** + * This is a mandatory parameter. + */ + public SetBitbucketCloudBindingRequest setRepository(String repository) { + this.repository = repository; + return this; + } + + public String getRepository() { + return repository; + } +} |