aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch-protocol/src/main/protobuf/batch_report.proto
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2015-03-16 16:06:38 +0100
committerJulien HENRY <julien.henry@sonarsource.com>2015-03-16 16:06:38 +0100
commitbf4a0225b21f6eebd60e05d1aa963a6b4007c13b (patch)
treea4b0b614f6e896222988d7ce61e671ebe2eab535 /sonar-batch-protocol/src/main/protobuf/batch_report.proto
parent07018b840638267e75af62f13c34ee67a691f988 (diff)
downloadsonarqube-bf4a0225b21f6eebd60e05d1aa963a6b4007c13b.tar.gz
sonarqube-bf4a0225b21f6eebd60e05d1aa963a6b4007c13b.zip
Apply naming convention for repeated protobuf attributes
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/batch_report.proto')
-rw-r--r--sonar-batch-protocol/src/main/protobuf/batch_report.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
index 58ba5c532d4..e159bedf516 100644
--- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto
+++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
@@ -60,8 +60,8 @@ message Component {
optional ComponentType type = 4;
optional bool is_test = 5;
optional string language = 6;
- repeated int32 child_refs = 7 [packed=true];
- repeated ComponentLink links = 10;
+ repeated int32 child_ref = 7 [packed=true];
+ repeated ComponentLink link = 10;
// temporary fields during development of computation stack
optional int32 snapshot_id = 8;
@@ -74,7 +74,7 @@ message Issue {
optional int32 line = 3;
optional string msg = 4;
optional Severity severity = 5;
- repeated string tags = 6;
+ repeated string tag = 6;
// temporary fields during development of computation stack
optional double effort_to_fix = 7;
@@ -101,7 +101,7 @@ message Issue {
message Issues {
optional int32 component_ref = 1;
- repeated Issue list = 2;
+ repeated Issue issue = 2;
// Temporary field for issues on deleted components
optional string component_uuid = 3;