aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java6
1 files changed, 4 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 0a68992a6b2..5a6964dda44 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
@@ -37,10 +37,12 @@ import org.sonar.api.server.ServerSide;
public abstract class Server {
/**
- * Name is misleading, this is an UUID generated
- * at each startup, so it changes if server is restarted.
+ * UUID identifying the installation. It is persisted
+ * so that it does not change over time, even after
+ * a restart.
* In the context of cluster, the value is shared
* by all the nodes.
+ *
* @return a non-null UUID. Format can change over versions.
*/
public abstract String getId();