diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-06 10:05:18 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-16 11:38:43 +0100 |
commit | c63bba383207809b3c6f49cbb40d2bd03bec1f17 (patch) | |
tree | 7a181575fc088b301524d8b02362d8487edcf169 /sonar-plugin-api/src | |
parent | 14944eb05b9902c337398c25d9dca12c08978e54 (diff) | |
download | sonarqube-c63bba383207809b3c6f49cbb40d2bd03bec1f17.tar.gz sonarqube-c63bba383207809b3c6f49cbb40d2bd03bec1f17.zip |
SONAR-8429 add organization parameter to api/ce/submit
remove hardcode to default organization from ComponentService
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/server/ws/Request.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/server/ws/Request.java b/sonar-plugin-api/src/main/java/org/sonar/api/server/ws/Request.java index b5eb78f7d8d..9296817a6b1 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/server/ws/Request.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/server/ws/Request.java @@ -445,7 +445,7 @@ public abstract class Request { /** * Extends {@link Param} with convenience methods specific to the type {@link String}. */ - interface StringParam extends Param<String> { + public interface StringParam extends Param<String> { /** * Returns a {@link StringParam} object which methods {@link #getValue()} and {@link #or(Supplier)} will * return {@code null} rather than an empty String when the param is present and its value is an empty String. |