diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-16 16:19:24 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-01-17 12:12:41 +0100 |
commit | e3d22bdd24befb4f42c38fb27538889668eff7d9 (patch) | |
tree | 32100241dc05582669cfc96d4c35cd9648895780 /sonar-ws/src/main | |
parent | 54febab19d56400ec38874f2b5744916bb077e21 (diff) | |
download | sonarqube-e3d22bdd24befb4f42c38fb27538889668eff7d9.tar.gz sonarqube-e3d22bdd24befb4f42c38fb27538889668eff7d9.zip |
SONAR-8595 fix backward incompatible change in proto of api/components
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-components.proto | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto index c05da782e17..d99095e075c 100644 --- a/sonar-ws/src/main/protobuf/ws-components.proto +++ b/sonar-ws/src/main/protobuf/ws-components.proto @@ -75,16 +75,16 @@ message SearchProjectsWsResponse { } message Component { - optional string organization = 1; - optional string id = 2; - optional string key = 3; - optional string refId = 4; - optional string refKey = 5; - optional string projectId = 6; - optional string name = 7; - optional string description = 8; - optional string qualifier = 9; - optional string path = 10; - optional string language = 11; - optional bool isFavorite = 12; + optional string organization = 12; + optional string id = 1; + optional string key = 2; + optional string refId = 3; + optional string refKey = 4; + optional string projectId = 5; + optional string name = 6; + optional string description = 7; + optional string qualifier = 8; + optional string path = 9; + optional string language = 10; + optional bool isFavorite = 11; } |