diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2017-06-20 11:41:57 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2017-06-20 15:16:02 +0200 |
commit | 25e95eda0c4c00bf5a92543db8b5e990f901d117 (patch) | |
tree | de0fe405ea4bd7096fbea74d20d80ba6a854547b /sonar-ws | |
parent | 45ae7835e43c8ac6f676a5a50eb164d7a8a4e9d5 (diff) | |
download | sonarqube-25e95eda0c4c00bf5a92543db8b5e990f901d117.tar.gz sonarqube-25e95eda0c4c00bf5a92543db8b5e990f901d117.zip |
SONAR-9441 WS api/duplications/show fails properly when no parameter provided
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-duplications.proto | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-duplications.proto b/sonar-ws/src/main/protobuf/ws-duplications.proto new file mode 100644 index 00000000000..f8b292ec4e8 --- /dev/null +++ b/sonar-ws/src/main/protobuf/ws-duplications.proto @@ -0,0 +1,54 @@ +// SonarQube, open source software quality management tool. +// Copyright (C) 2008-2016 SonarSource +// mailto:contact AT sonarsource DOT com +// +// SonarQube is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 3 of the License, or (at your option) any later version. +// +// SonarQube is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with this program; if not, write to the Free Software Foundation, +// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +syntax = "proto3"; + +package sonarqube.ws.duplication; + +option java_package = "org.sonarqube.ws"; +option java_outer_classname = "WsDuplications"; +option optimize_for = SPEED; + +// WS api/duplications/show +message ShowResponse { + repeated Duplication duplications = 1; + map<string,File> files = 2; + +} + +message Duplication { + repeated Block blocks = 1; +} + +message Block { + int32 from = 1; + int32 size = 2; + string _ref = 3; +} + +message File { + string key = 1; + string name = 2; + string uuid = 3; + string project = 4; + string projectUuid = 5; + string projectName = 6; + string subProject = 7; + string subProjectUuid = 8; + string subProjectName = 9; +} |