]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-9721 fix javadoc of Server#getId()
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 30 Aug 2017 07:37:39 +0000 (09:37 +0200)
committerTeryk Bellahsene <teryk@users.noreply.github.com>
Wed, 30 Aug 2017 14:24:53 +0000 (16:24 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/platform/Server.java

index 0a68992a6b2514e3a9e680097b2f218fda8d4fd8..5a6964dda44023b6b83f7aaf4f3a771c3c75de41 100644 (file)
@@ -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();