From: David Gageot Date: Fri, 21 Sep 2012 13:38:32 +0000 (+0200) Subject: SONAR-3808 Status codes of /api/server are not up-to-date in wsclient X-Git-Tag: 3.3~237 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a6b98f405d64bcaec46003fd728113a9ea2feaf0;p=sonarqube.git SONAR-3808 Status codes of /api/server are not up-to-date in wsclient --- diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Server.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Server.java index 60514e64a81..d3a13f0bcc7 100644 --- a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Server.java +++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Server.java @@ -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;