org.sonarqube.ws.client.settings.SettingsService 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.settings;
import java.util.stream.Collectors;
import javax.annotation.Generated;
import org.sonarqube.ws.MediaTypes;
import org.sonarqube.ws.Settings.CheckSecretKeyWsResponse;
import org.sonarqube.ws.Settings.EncryptWsResponse;
import org.sonarqube.ws.Settings.GenerateSecretKeyWsResponse;
import org.sonarqube.ws.Settings.ListDefinitionsWsResponse;
import org.sonarqube.ws.Settings.ValuesWsResponse;
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 SettingsService extends BaseService {
public SettingsService(WsConnector wsConnector) {
super(wsConnector, "api/settings");
}
/**
* 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 CheckSecretKeyWsResponse checkSecretKey() {
return call(
new GetRequest(path("check_secret_key")),
CheckSecretKeyWsResponse.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 6.1
*/
public EncryptWsResponse encrypt(EncryptRequest request) {
return call(
new PostRequest(path("encrypt"))
.setParam("value", request.getValue()),
EncryptWsResponse.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 6.1
*/
public GenerateSecretKeyWsResponse generateSecretKey() {
return call(
new GetRequest(path("generate_secret_key")),
GenerateSecretKeyWsResponse.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 6.3
*/
public ListDefinitionsWsResponse listDefinitions(ListDefinitionsRequest request) {
return call(
new GetRequest(path("list_definitions"))
.setParam("branch", request.getBranch())
.setParam("component", request.getComponent())
.setParam("pullRequest", request.getPullRequest()),
ListDefinitionsWsResponse.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 6.1
*/
public void reset(ResetRequest request) {
call(
new PostRequest(path("reset"))
.setParam("branch", request.getBranch())
.setParam("component", request.getComponent())
.setParam("keys", request.getKeys() == null ? null : request.getKeys().stream().collect(Collectors.joining(",")))
.setParam("pullRequest", request.getPullRequest())
.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 6.1
*/
public void set(SetRequest request) {
call(
new PostRequest(path("set"))
.setParam("branch", request.getBranch())
.setParam("component", request.getComponent())
.setParam("fieldValues", request.getFieldValues() == null ? null : request.getFieldValues())
.setParam("key", request.getKey())
.setParam("pullRequest", request.getPullRequest())
.setParam("value", request.getValue())
.setParam("values", request.getValues() == null ? null : request.getValues())
.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.3
*/
public ValuesWsResponse values(ValuesRequest request) {
return call(
new GetRequest(path("values"))
.setParam("branch", request.getBranch())
.setParam("component", request.getComponent())
.setParam("keys", request.getKeys() == null ? null : request.getKeys().stream().collect(Collectors.joining(",")))
.setParam("pullRequest", request.getPullRequest()),
ValuesWsResponse.parser());
}
}