aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-10-12 18:53:31 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-10-13 12:13:11 +0200
commit73b71c9e8eb47c6d833cd5f4725be50719598b88 (patch)
treef21ba43e4888cddbf49d3b58db607206fba1183d /sonar-ws
parent8595a520f31a9f2b0ea77e10086685d2290ac1f3 (diff)
downloadsonarqube-73b71c9e8eb47c6d833cd5f4725be50719598b88.tar.gz
sonarqube-73b71c9e8eb47c6d833cd5f4725be50719598b88.zip
Support organizations in user group web services
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-user_groups.proto43
1 files changed, 43 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-user_groups.proto b/sonar-ws/src/main/protobuf/ws-user_groups.proto
new file mode 100644
index 00000000000..295034042bb
--- /dev/null
+++ b/sonar-ws/src/main/protobuf/ws-user_groups.proto
@@ -0,0 +1,43 @@
+// SonarQube, open source software quality management tool.
+// Copyright (C) 2008-2015 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 = "proto2";
+
+package sonarqube.ws.usergroup;
+
+option java_package = "org.sonarqube.ws";
+option java_outer_classname = "WsUserGroups";
+option optimize_for = SPEED;
+
+// WS api/user_groups/create
+message CreateResponse {
+ optional Group group = 1;
+}
+
+// WS api/user_groups/update
+message UpdateResponse {
+ optional Group group = 1;
+}
+
+message Group {
+ optional int64 id = 1;
+ optional string organization = 2;
+ optional string name = 3;
+ optional string description = 4;
+ optional int32 membersCount = 5;
+}