diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-07 15:32:30 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-09-10 16:24:35 +0200 |
commit | d000d02bf54c1cdd44bfd8b8a5434df1bb4fb4c8 (patch) | |
tree | c65ddaaeb92d9e6523bf8daffade59e839072b02 /sonar-ws/src/main/protobuf/ws-issues.proto | |
parent | 2cefd460a1366f37c720c01964e00bac4b577c03 (diff) | |
download | sonarqube-d000d02bf54c1cdd44bfd8b8a5434df1bb4fb4c8.tar.gz sonarqube-d000d02bf54c1cdd44bfd8b8a5434df1bb4fb4c8.zip |
SONAR-6052 Drop secondary locations from db/ws
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-issues.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index fbe07c8ad06..c2a6a3d1267 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -70,39 +70,38 @@ message Issue { optional string subProject = 7; optional int32 line = 8; optional sonarqube.ws.commons.TextRange textRange = 9; - repeated Location secondaryLocations = 10; - repeated ExecutionFlow executionFlows = 11; - optional string resolution = 12; - optional string status = 13; - optional string message = 14; - optional string debt = 15; - optional string assignee = 16; - optional string reporter = 17; + repeated Flow flows = 10; + optional string resolution = 11; + optional string status = 12; + optional string message = 13; + optional string debt = 14; + optional string assignee = 15; + optional string reporter = 16; // SCM login of the committer who introduced the issue - optional string author = 18; + optional string author = 17; - optional string actionPlan = 19; - optional bool tagsPresentIfEmpty = 20; - repeated string tags = 21; + optional string actionPlan = 18; + optional bool tagsPresentIfEmpty = 19; + repeated string tags = 20; // the transitions allowed for the requesting user. - optional bool transitionsPresentIfEmpty = 22; - repeated string transitions = 23; + optional bool transitionsPresentIfEmpty = 21; + repeated string transitions = 22; // the actions allowed for the requesting user. - optional bool actionsPresentIfEmpty = 24; - repeated string actions = 25; - - optional bool commentsPresentIfEmpty = 26; - repeated Comment comments = 27; - optional string creationDate = 28; - optional string updateDate = 29; - optional string fUpdateAge = 30; - optional string closeDate = 31; + optional bool actionsPresentIfEmpty = 23; + repeated string actions = 24; + + optional bool commentsPresentIfEmpty = 25; + repeated Comment comments = 26; + optional string creationDate = 27; + optional string updateDate = 28; + optional string fUpdateAge = 29; + optional string closeDate = 30; } -message ExecutionFlow { +message Flow { repeated Location locations = 1; } |