From 2c7c32d227b65906cf20d914f31be5ae02d50b6d Mon Sep 17 00:00:00 2001 From: nmittler Date: Fri, 27 Feb 2015 11:04:42 -0800 Subject: [PATCH] More example changes to match style guide. --- examples/src/main/proto/{greeter.proto => hello_world.proto} | 1 + examples/src/main/proto/route_guide.proto | 1 + 2 files changed, 2 insertions(+) rename examples/src/main/proto/{greeter.proto => hello_world.proto} (97%) diff --git a/examples/src/main/proto/greeter.proto b/examples/src/main/proto/hello_world.proto similarity index 97% rename from examples/src/main/proto/greeter.proto rename to examples/src/main/proto/hello_world.proto index 92a990976d..371a4f6c10 100644 --- a/examples/src/main/proto/greeter.proto +++ b/examples/src/main/proto/hello_world.proto @@ -33,6 +33,7 @@ package grpc.example.helloworld; option java_multiple_files = true; option java_package = "io.grpc.examples.helloworld"; +option java_outer_classname = "HelloWorldProto"; // The greeting service definition. service Greeter { diff --git a/examples/src/main/proto/route_guide.proto b/examples/src/main/proto/route_guide.proto index 44b4ca73c2..377d0d5a02 100644 --- a/examples/src/main/proto/route_guide.proto +++ b/examples/src/main/proto/route_guide.proto @@ -33,6 +33,7 @@ package grpc.example.routeguide; option java_multiple_files = true; option java_package = "io.grpc.examples.routeguide"; +option java_outer_classname = "RouteGuideProto"; // Interface exported by the server. service RouteGuide {