blob: 7e63602f036b133595897436cf977f67bb5840ac [file] [log] [blame]
Jan Tattermusch7897ae92017-06-07 22:57:36 +02001// Copyright 2015 gRPC authors.
Jorge Canizalesd4634d02015-06-10 13:28:38 -07002//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
Jorge Canizalesd4634d02015-06-10 13:28:38 -07006//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02007// http://www.apache.org/licenses/LICENSE-2.0
Jorge Canizalesd4634d02015-06-10 13:28:38 -07008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Jorge Canizalesd4634d02015-06-10 13:28:38 -070014
15syntax = "proto3";
16
17package grpc.testing;
18
19option objc_class_prefix = "AUTH";
20
21// Unary request.
22message Request {
23 // Whether Response should include username.
24 bool fill_username = 4;
25
26 // Whether Response should include OAuth scope.
27 bool fill_oauth_scope = 5;
28}
29
30// Unary response, as configured by the request.
31message Response {
32 // The user the request came from, for verifying authentication was
33 // successful.
34 string username = 2;
35 // OAuth scope.
36 string oauth_scope = 3;
37}
38
39service TestService {
40 // One request followed by one response.
41 rpc UnaryCall(Request) returns (Response);
42}