diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-03-29 16:34:18 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-03-30 12:18:13 +0200 |
commit | d927ef2f4096f3d925f28397aa6edc597b2ce45d (patch) | |
tree | 9d06bd62aec7124e5853baf136e6de8776440dfe /sonar-ws | |
parent | 10955ec396a053d596a40ac3fdf7ca73dd911327 (diff) | |
download | sonarqube-d927ef2f4096f3d925f28397aa6edc597b2ce45d.tar.gz sonarqube-d927ef2f4096f3d925f28397aa6edc597b2ce45d.zip |
SONAR-7478 WS api/users/identity_providers return external identity providers
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-users.proto | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-users.proto b/sonar-ws/src/main/protobuf/ws-users.proto new file mode 100644 index 00000000000..20b6fff0d77 --- /dev/null +++ b/sonar-ws/src/main/protobuf/ws-users.proto @@ -0,0 +1,37 @@ +// 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.users; + +option java_package = "org.sonarqube.ws"; +option java_outer_classname = "WsUsers"; +option optimize_for = SPEED; + +// WS api/users/identity_providers +message IdentityProvidersWsResponse { + repeated IdentityProvider identityProviders = 1; +} + +message IdentityProvider { + optional string key = 1; + optional string name = 2; + optional string iconPath = 3; + optional string backgroundColor = 4; +} |