summaryrefslogtreecommitdiffstats
path: root/test/samples/uscxml/proto/TestServices.proto
diff options
context:
space:
mode:
Diffstat (limited to 'test/samples/uscxml/proto/TestServices.proto')
-rw-r--r--test/samples/uscxml/proto/TestServices.proto23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/samples/uscxml/proto/TestServices.proto b/test/samples/uscxml/proto/TestServices.proto
deleted file mode 100644
index c96c34f..0000000
--- a/test/samples/uscxml/proto/TestServices.proto
+++ /dev/null
@@ -1,23 +0,0 @@
-option java_package = "org.umundo.protobuf.tests";
-
-message EchoRequest {
- required string name = 1;
- optional bytes buffer = 2;
-}
-message EchoReply {
- required string name = 1;
- optional bytes buffer = 2;
-}
-service EchoService {
- rpc echo (EchoRequest) returns (EchoReply);
-}
-
-message PingRequest {
- required string name = 1;
-}
-message PingReply {
- required string name = 1;
-}
-service PingService {
- rpc ping (PingRequest) returns (PingReply);
-}