aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorAurelien Poscia <aurelien.poscia@sonarsource.com>2022-05-09 12:10:19 +0200
committersonartech <sonartech@sonarsource.com>2022-05-11 20:02:59 +0000
commitb507c1c7bb753f87be137dd82a9b8cace24f3bcb (patch)
treeb7c66a0a0081788adcd06e92389fe5fcf3f616d3 /sonar-ws
parentfcb80c0ade78102214df316476cf8c15e0e819d3 (diff)
downloadsonarqube-b507c1c7bb753f87be137dd82a9b8cace24f3bcb.tar.gz
sonarqube-b507c1c7bb753f87be137dd82a9b8cace24f3bcb.zip
SONAR-16397 update hotspot API to handle advanced rule descriptions
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-hotspots.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto
index 4560baa7dcc..41b89d19269 100644
--- a/sonar-ws/src/main/protobuf/ws-hotspots.proto
+++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto
@@ -90,7 +90,7 @@ message Rule {
optional string name = 2;
optional string securityCategory = 3;
optional string vulnerabilityProbability = 4;
- optional string riskDescription = 5;
- optional string vulnerabilityDescription = 6;
- optional string fixRecommendations = 7;
+ optional string riskDescription = 5 [deprecated=true];
+ optional string vulnerabilityDescription = 6 [deprecated=true];
+ optional string fixRecommendations = 7 [deprecated=true];
}