aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-05-11 16:26:58 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-05-12 15:35:49 +0200
commit59336a29a7c9377bfc2d32b10a3b9b65f8748479 (patch)
tree53962828d1ec9958c0e4269e8aa43f0363e1bc3a /sonar-plugin-api
parent71b97ad9af2ba00f153139c28b5c2ccdc139e67a (diff)
downloadsonarqube-59336a29a7c9377bfc2d32b10a3b9b65f8748479.tar.gz
sonarqube-59336a29a7c9377bfc2d32b10a3b9b65f8748479.zip
SONAR-7534 implement Server#getUrl on the server side
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java b/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java
index 62b5915e136..b77d46aacd2 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java
@@ -70,8 +70,8 @@ public abstract class Server {
public abstract boolean isSecured();
/**
- * @return the server URL when executed from batch, else null.
- * @since 2.4
+ * @return the server URL
+ * @since since 2.4 on batch side only, since 5.6 on both batch side and server side
*/
public abstract String getURL();