diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-01 20:35:30 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-02 16:15:33 +0100 |
commit | 8f7a9ad479a219fc22ac729a23f220e450c572b7 (patch) | |
tree | fc702b589ac386098987cf09ef4da01f53375fd8 /sonar-plugin-api | |
parent | ec20fce8d932bd19c3f3ed2ed007fe5367f6c2f4 (diff) | |
download | sonarqube-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.java | 4 |
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(); /** |