]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-14598 Added ITs and generated code related to Bitbucket Cloud Ws Tests
authorLukasz Jarocki <lukasz.jarocki@sonarsource.com>
Fri, 19 Mar 2021 09:37:35 +0000 (10:37 +0100)
committersonartech <sonartech@sonarsource.com>
Mon, 22 Mar 2021 20:08:42 +0000 (20:08 +0000)
sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java
sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java [new file with mode: 0644]

index f109c608153c5dfe80196c2fbd50bcdf21f319b2..326de453b8c218ae144e1ca42c7ec59f110ce212 100644 (file)
@@ -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 <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>
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 (file)
index 0000000..88e052d
--- /dev/null
@@ -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;
+  }
+}