aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-02-01 20:35:30 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-02-02 16:15:33 +0100
commit8f7a9ad479a219fc22ac729a23f220e450c572b7 (patch)
treefc702b589ac386098987cf09ef4da01f53375fd8 /sonar-plugin-api
parentec20fce8d932bd19c3f3ed2ed007fe5367f6c2f4 (diff)
downloadsonarqube-8f7a9ad479a219fc22ac729a23f220e450c572b7.tar.gz
sonarqube-8f7a9ad479a219fc22ac729a23f220e450c572b7.zip
SONAR-7122 Drop the ability to customize the web app context
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java4
1 files changed, 4 insertions, 0 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 4fa6a3a5d1a..c68cbd2370b 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
@@ -43,6 +43,10 @@ public abstract class Server {
@CheckForNull
public abstract File getDeployDir();
+ /**
+ * @deprecated in 5.4. Web context path can not be configured. It's always {@code ""}. See https://jira.sonarsource.com/browse/SONAR-7122
+ */
+ @Deprecated
public abstract String getContextPath();
/**