blob: 13e9cd7e25a247f528a647756bb45e5b8681cbd6 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
syntax = "proto2";
package org.apache.dubbo.common.serialize.protobuf.model;
message PBRequestType {
optional double money = 1;
optional float cash = 2;
optional int32 age = 3;
optional int64 num = 4;
optional bool sex = 5;
optional string name = 6;
optional bytes msg = 7;
repeated org.apache.dubbo.common.serialize.protobuf.model.PhoneNumber phone = 8;
map<string, PhoneNumber> doubleMap = 9;
}
message PBResponseType {
optional string msg = 1;
optional org.apache.dubbo.common.serialize.protobuf.model.PBRequestType CDubboPBRequestType = 3;
}
message PhoneNumber {
required string number = 1;
optional org.apache.dubbo.common.serialize.protobuf.model.PhoneType type = 2 [default = HOME];
}
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
service CDubboPBService {
rpc sayHello (org.apache.dubbo.common.serialize.protobuf.model.PBRequestType) returns (org.apache.dubbo.common.serialize.protobuf.model.PBResponseType);
}