org.sonar.server.measure.ws.MeasuresWsParametersBuilder Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact 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.sonar.server.measure.ws;
import org.sonar.api.server.ws.WebService.NewAction;
import org.sonar.api.server.ws.WebService.NewParam;
import org.sonar.core.util.Uuids;
import org.sonar.server.ws.KeyExamples;
import static org.sonarqube.ws.client.measure.MeasuresWsParameters.ADDITIONAL_FIELDS;
import static org.sonarqube.ws.client.measure.MeasuresWsParameters.PARAM_ADDITIONAL_FIELDS;
import static org.sonarqube.ws.client.measure.MeasuresWsParameters.PARAM_DEVELOPER_ID;
import static org.sonarqube.ws.client.measure.MeasuresWsParameters.PARAM_DEVELOPER_KEY;
import static org.sonarqube.ws.client.measure.MeasuresWsParameters.PARAM_METRIC_KEYS;
class MeasuresWsParametersBuilder {
private MeasuresWsParametersBuilder() {
// prevent instantiation
}
static NewParam createAdditionalFieldsParameter(NewAction action) {
return action.createParam(PARAM_ADDITIONAL_FIELDS)
.setDescription("Comma-separated list of additional fields that can be returned in the response.")
.setPossibleValues(ADDITIONAL_FIELDS)
.setExampleValue("periods,metrics");
}
static NewParam createMetricKeysParameter(NewAction action) {
return action.createParam(PARAM_METRIC_KEYS)
.setDescription("Metric keys")
.setRequired(true)
.setExampleValue("ncloc,complexity,violations");
}
static void createDeveloperParameters(NewAction action) {
action.createParam(PARAM_DEVELOPER_ID)
.setDescription("Developer id. If set, developer's measures are returned.")
.setExampleValue(Uuids.UUID_EXAMPLE_01);
action.createParam(PARAM_DEVELOPER_KEY)
.setDescription("Developer key. If set, developer's measures are returned.")
.setExampleValue(KeyExamples.KEY_DEVELOPER_EXAMPLE_001);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy