]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5174 Add new parameters docs
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 3 Apr 2014 06:39:42 +0000 (08:39 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 3 Apr 2014 06:39:51 +0000 (08:39 +0200)
sonar-server/src/main/java/org/sonar/server/rule/ws/RulesWs.java

index 294f2b7d141f307a3e964b51d0d5168c74e7fc5d..33187d35072a144d2380ea25e2375f370404abff 100644 (file)
@@ -46,7 +46,13 @@ public class RulesWs implements WebService {
       .setHandler(searchHandler)
       .createParam("s", "An optional query that will be matched against rule titles.")
       .createParam("k", "An optional query that will be matched exactly agains rule keys.")
-      // TODO add description for languages, repositories, etc. params
+      .createParam("languages", "An optional query that will be matched against rule languages.")
+      .createParam("repositories", "An optional query that will be matched against rule repositories.")
+      .createParam("severities", "An optional query that will be matched against rule severities.")
+      .createParam("statuses", "An optional query that will be matched against rule statuses.")
+      .createParam("tags", "An optional query that will be matched against rule tags.")
+      .createParam("debtCharacteristics", "An optional query that will be matched against rule debt characteristics or sub-characteristics.")
+      .createParam("hasDebtCharacteristic", "Determine if returned rules should be linked to a debt characteristics or not.")
       .createParam("ps", "Optional page size (default is 25).")
       .createParam("p", "Optional page number (default is 0).");