Home | History | Annotate | Download | only in protos
      1 // Copyright 2015 gRPC authors.
      2 //
      3 // 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
      6 //
      7 //     http://www.apache.org/licenses/LICENSE-2.0
      8 //
      9 // 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.
     14 
     15 syntax = "proto3";
     16 
     17 package grpc.testing;
     18 
     19 option objc_class_prefix = "AUTH";
     20 
     21 // Unary request.
     22 message 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.
     31 message 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 
     39 service TestService {
     40   // One request followed by one response.
     41   rpc UnaryCall(Request) returns (Response);
     42 }
     43