aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2020-12-08 17:02:46 +0100
committersonartech <sonartech@sonarsource.com>2020-12-22 20:09:35 +0000
commit4ad241a3c3cdb1b740f09cfb71c5ff62f88a52da (patch)
tree9a6c346ba56e8c848641821dc5708d7470fa07a1 /sonar-ws/src/main
parentaade9364a222de0c4e8188e8c8d1ac1ecb91f435 (diff)
downloadsonarqube-4ad241a3c3cdb1b740f09cfb71c5ff62f88a52da.tar.gz
sonarqube-4ad241a3c3cdb1b740f09cfb71c5ff62f88a52da.zip
SONAR-13999 drop organization from CE WS
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r--sonar-ws/src/main/protobuf/ws-ce.proto26
1 files changed, 12 insertions, 14 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto
index 2c083fbbec6..cd16545ae8b 100644
--- a/sonar-ws/src/main/protobuf/ws-ce.proto
+++ b/sonar-ws/src/main/protobuf/ws-ce.proto
@@ -64,12 +64,11 @@ message AnalysisStatusWsResponse {
optional Component component = 1;
message Component {
- optional string organization = 1;
- optional string key = 2;
- optional string name = 3;
- repeated Warning warnings = 4;
- optional string branch = 5;
- optional string pullRequest = 6;
+ optional string key = 1;
+ optional string name = 2;
+ repeated Warning warnings = 3;
+ optional string branch = 4;
+ optional string pullRequest = 5;
}
message Warning {
@@ -127,14 +126,13 @@ message Task {
optional string errorStacktrace = 17;
optional string scannerContext = 18;
optional bool hasScannerContext = 19;
- optional string organization = 20;
- optional string branch = 21;
- optional sonarqube.ws.commons.BranchType branchType = 22;
- optional string errorType = 23;
- optional string pullRequest = 24;
- optional string pullRequestTitle = 25;
- optional int32 warningCount = 26;
- repeated string warnings = 27;
+ optional string branch = 20;
+ optional sonarqube.ws.commons.BranchType branchType = 21;
+ optional string errorType = 22;
+ optional string pullRequest = 23;
+ optional string pullRequestTitle = 24;
+ optional int32 warningCount = 25;
+ repeated string warnings = 26;
}
enum TaskStatus {