From 6f13f93ffca506f08f5c55421a069590f170f97f Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 30 Aug 2017 09:37:39 +0200 Subject: [PATCH] SONAR-9721 fix javadoc of Server#getId() --- .../src/main/java/org/sonar/api/platform/Server.java | 6 ++++-- 1 file 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(); -- 2.39.5