diff options
author | Aurelien Poscia <aurelien.poscia@sonarsource.com> | 2022-05-09 12:10:19 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-05-11 20:02:59 +0000 |
commit | b507c1c7bb753f87be137dd82a9b8cace24f3bcb (patch) | |
tree | b7c66a0a0081788adcd06e92389fe5fcf3f616d3 /sonar-ws | |
parent | fcb80c0ade78102214df316476cf8c15e0e819d3 (diff) | |
download | sonarqube-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.proto | 6 |
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]; } |