aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-dao/src/main/protobuf/db-issues.proto
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2022-09-06 16:28:29 -0500
committersonartech <sonartech@sonarsource.com>2022-09-16 20:03:14 +0000
commit47f5baa558b751f48cd04d06c63c044424904c37 (patch)
tree3205a8f36c8c718d93a72dc2a3d64888be2fde8a /server/sonar-db-dao/src/main/protobuf/db-issues.proto
parent00431799f91fa3b5e7b28d4379991e2456a41ea4 (diff)
downloadsonarqube-47f5baa558b751f48cd04d06c63c044424904c37.tar.gz
sonarqube-47f5baa558b751f48cd04d06c63c044424904c37.zip
SONAR-17287 SonarQube stores issue flow types and descriptions
Diffstat (limited to 'server/sonar-db-dao/src/main/protobuf/db-issues.proto')
-rw-r--r--server/sonar-db-dao/src/main/protobuf/db-issues.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/sonar-db-dao/src/main/protobuf/db-issues.proto b/server/sonar-db-dao/src/main/protobuf/db-issues.proto
index 6b64ce30f59..3138260372d 100644
--- a/server/sonar-db-dao/src/main/protobuf/db-issues.proto
+++ b/server/sonar-db-dao/src/main/protobuf/db-issues.proto
@@ -38,6 +38,13 @@ message Locations {
message Flow {
repeated Location location = 1;
+ optional string description = 2;
+ optional FlowType type = 3;
+}
+
+enum FlowType {
+ DATA = 0;
+ EXECUTION = 1;
}
message Location {