Browse Source

SONAR-14598 Added ITs and generated code related to Bitbucket Cloud Ws Tests

tags/8.8.0.42792
Lukasz Jarocki 3 years ago
parent
commit
7a44195cc2

+ 18
- 0
sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/AlmSettingsService.java View 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>

+ 85
- 0
sonar-ws/src/main/java/org/sonarqube/ws/client/almsettings/SetBitbucketCloudBindingRequest.java View File

@@ -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;
}
}

Loading…
Cancel
Save