]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3808 Status codes of /api/server are not up-to-date in wsclient
authorDavid Gageot <david@gageot.net>
Fri, 21 Sep 2012 13:38:32 +0000 (15:38 +0200)
committerDavid Gageot <david@gageot.net>
Mon, 24 Sep 2012 06:55:03 +0000 (08:55 +0200)
sonar-ws-client/src/main/java/org/sonar/wsclient/services/Server.java

index 60514e64a8110768f0edc65f2d4a9e3614a3f678..d3a13f0bcc7f51f73cba41082a4115c1387c2660 100644 (file)
@@ -25,7 +25,14 @@ package org.sonar.wsclient.services;
 public class Server extends Model {
 
   public static enum Status {
-    SETUP, UP, DOWN
+    SETUP,
+    UP,
+    DOWN,
+
+    /**
+     * @since 3.3
+     */
+    MIGRATION_RUNNING
   }
 
   private String id;