From 7a44195cc2a377d5dbfa17ae55105ea29a68318a Mon Sep 17 00:00:00 2001 From: Lukasz Jarocki Date: Fri, 19 Mar 2021 10:37:35 +0100 Subject: SONAR-14598 Added ITs and generated code related to Bitbucket Cloud Ws Tests --- .../ws/client/almsettings/AlmSettingsService.java | 18 +++++ .../SetBitbucketCloudBindingRequest.java | 85 ++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java (limited to 'sonar-ws') 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 @@ -249,6 +249,24 @@ public class AlmSettingsService extends BaseService { .setMediaType(MediaTypes.JSON)).content(); } + /** + * + * This is part of the internal API. + * This is a POST request. + * @see Further information about this action online (including a response example) + * @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 Further information about this action online (including a response example) 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 Further information about this action online (including a response example) + * @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; + } +} -- cgit v1.2.3