]> source.dussan.org Git - sonarqube.git/commitdiff
Set /api/rules/list as internal
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 18 Apr 2014 09:48:42 +0000 (11:48 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 18 Apr 2014 11:59:04 +0000 (13:59 +0200)
sonar-server/src/main/java/org/sonar/server/rule/ws/RulesWs.java

index ef634710420b59baa8da0e9e642d0e5deeb7c0c3..d7a4dd13826ab5b888ed61422ddd6003d6bd1cb9 100644 (file)
@@ -46,7 +46,7 @@ public class RulesWs implements WebService {
       .setInternal(true)
       .setHandler(searchHandler)
       .createParam("s", "To return rules whose title contains this string.")
-      .createParam("k", "An optional query that will be matched exactly agains rule keys.")
+      .createParam("k", "Key of the rule, for example : 'findbugs:DMI_USELESS_SUBSTRING'.")
       .createParam("languages", "Comma-separated list of language keys")
       .createParam("repositories", "Comma-separated list of repositories")
       .createParam("severities", "Comma-separated list of severities. Possible values: INFO | MINOR | MAJOR | CRITICAL | BLOCKER.")