![JAR search and dependency download from the Maven repository](/logo.png)
org.sonarqube.ws.client.qualitygates.QualitygatesService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-ws Show documentation
Show all versions of sonar-ws Show documentation
Open source platform for continuous inspection of code quality
/*
* SonarQube
* Copyright (C) 2009-2024 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.qualitygates;
import javax.annotation.Generated;
import org.sonarqube.ws.MediaTypes;
import org.sonarqube.ws.Qualitygates;
import org.sonarqube.ws.Qualitygates.CreateConditionResponse;
import org.sonarqube.ws.Qualitygates.CreateResponse;
import org.sonarqube.ws.Qualitygates.GetByProjectResponse;
import org.sonarqube.ws.Qualitygates.ListWsResponse;
import org.sonarqube.ws.Qualitygates.ProjectStatusResponse;
import org.sonarqube.ws.Qualitygates.SearchResponse;
import org.sonarqube.ws.Qualitygates.ShowWsResponse;
import org.sonarqube.ws.Qualitygates.UpdateConditionResponse;
import org.sonarqube.ws.client.BaseService;
import org.sonarqube.ws.client.GetRequest;
import org.sonarqube.ws.client.PostRequest;
import org.sonarqube.ws.client.WsConnector;
/**
* @see Further information about this web service online
*/
@Generated("sonar-ws-generator")
public class QualitygatesService extends BaseService {
public QualitygatesService(WsConnector wsConnector) {
super(wsConnector, "api/qualitygates");
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public void copy(CopyRequest request) {
call(
new PostRequest(path("copy"))
.setParam("sourceName", request.getSourceName())
.setParam("name", request.getName())
.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 4.3
*/
public CreateResponse create(CreateRequest request) {
return call(
new PostRequest(path("create"))
.setParam("name", request.getName()),
CreateResponse.parser());
}
/**
* Use this for to use a JSON payload, useful to parse the quality gate as Long or String
*/
public CreateResponse createJson(CreateRequest request) {
return call(
new PostRequest(path("create"))
.setParam("name", request.getName()),
new QualityGatesServiceCreateResponseJsonParser(), MediaTypes.JSON);
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public CreateConditionResponse createCondition(CreateConditionRequest request) {
return call(
new PostRequest(path("create_condition"))
.setParam("error", request.getError())
.setParam("gateName", request.getGateName())
.setParam("metric", request.getMetric())
.setParam("op", request.getOp()),
CreateConditionResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public void deleteCondition(DeleteConditionRequest request) {
call(
new PostRequest(path("delete_condition"))
.setParam("id", request.getId())
.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 4.3
*/
public void deselect(DeselectRequest request) {
call(
new PostRequest(path("deselect"))
.setParam("projectKey", request.getProjectKey())
.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 4.3
*/
public void destroy(DestroyRequest request) {
call(
new PostRequest(path("destroy"))
.setParam("name", request.getName())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 6.1
*/
public GetByProjectResponse getByProject(GetByProjectRequest request) {
return call(
new GetRequest(path("get_by_project"))
.setParam("project", request.getProject()),
GetByProjectResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public ListWsResponse list(ListRequest request) {
return call(
new GetRequest(path("list")),
ListWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 5.3
*/
public ProjectStatusResponse projectStatus(ProjectStatusRequest request) {
return call(
new GetRequest(path("project_status"))
.setParam("analysisId", request.getAnalysisId())
.setParam("projectId", request.getProjectId())
.setParam("projectKey", request.getProjectKey())
.setParam("branch", request.getBranch())
.setParam("pullRequest", request.getPullRequest()),
ProjectStatusResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 2.0
*/
public void applicationStatus(ApplicationStatusRequest request) {
call(
new GetRequest(path("application_status"))
.setParam("application", request.getApplication())
.setParam("branch", request.getBranch()));
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public void rename(RenameRequest request) {
call(
new PostRequest(path("rename"))
.setParam("id", request.getId())
.setParam("name", request.getName())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public SearchResponse search(SearchRequest request) {
return call(
new GetRequest(path("search"))
.setParam("gateName", request.getGateName())
.setParam("page", request.getPage())
.setParam("pageSize", request.getPageSize())
.setParam("query", request.getQuery())
.setParam("selected", request.getSelected()),
SearchResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public void select(SelectRequest request) {
call(
new PostRequest(path("select"))
.setParam("gateName", request.getGateName())
.setParam("projectKey", request.getProjectKey())
.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 4.3
*/
public void setAsDefault(SetAsDefaultRequest request) {
call(
new PostRequest(path("set_as_default"))
.setParam("name", request.getName())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public ShowWsResponse show(ShowRequest request) {
return call(
new GetRequest(path("show"))
.setParam("name", request.getName()),
ShowWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 4.3
*/
public void updateCondition(UpdateConditionRequest request) {
call(
new PostRequest(path("update_condition"))
.setParam("error", request.getError())
.setParam("id", request.getId())
.setParam("metric", request.getMetric())
.setParam("op", request.getOp()),
UpdateConditionResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 9.2
*/
public void addUser(AddUserRequest request) {
call(
new PostRequest(path("add_user"))
.setParam("login", request.getLogin())
.setParam("gateName", request.getQualityGate())
.setMediaType(MediaTypes.JSON)
).content();
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 9.2
*/
public Qualitygates.SearchUsersResponse searchUsers(SearchUsersRequest request) {
return call(
new GetRequest(path("search_users"))
.setParam("p", request.getP())
.setParam("ps", request.getPs())
.setParam("q", request.getQ())
.setParam("gateName", request.getQualityGate())
.setParam("selected", request.getSelected()),
Qualitygates.SearchUsersResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 9.2
*/
public void removeUser(RemoveUserRequest request) {
call(
new PostRequest(path("remove_user"))
.setParam("login", request.getLogin())
.setParam("gateName", request.getQualityGate())
.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 9.2
*/
public void addGroup(AddGroupRequest request) {
call(
new PostRequest(path("add_group"))
.setParam("groupName", request.getGroup())
.setParam("gateName", request.getQualityGate())
.setMediaType(MediaTypes.JSON)
).content();
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 9.2
*/
public Qualitygates.SearchGroupsResponse searchGroups(SearchGroupsRequest request) {
return call(
new GetRequest(path("search_groups"))
.setParam("p", request.getP())
.setParam("ps", request.getPs())
.setParam("q", request.getQ())
.setParam("gateName", request.getQualityGate())
.setParam("selected", request.getSelected()),
Qualitygates.SearchGroupsResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 9.2
*/
public void removeGroup(RemoveGroupRequest request) {
call(
new PostRequest(path("remove_group"))
.setParam("groupName", request.getGroup())
.setParam("gateName", request.getQualityGate())
.setMediaType(MediaTypes.JSON)
).content();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy