mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
A convenient macro for packaging together all proto and gRPC libraries in an OSGi jar is provided. Also re-packaging of gRPC core (to avoid OSGi split problem) is simplified by depending on a patched fork of grpc-java. Change-Id: Idb79a5bea8ae0bc57b146bda1fc47a4568d12c60
14 lines
278 B
Protocol Buffer
14 lines
278 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "org.onosproject.grpc.proto.dummy";
|
|
|
|
package dummy;
|
|
|
|
service DummyService {
|
|
rpc SayHello (DummyMessageThatNoOneWouldReallyUse) returns (DummyMessageThatNoOneWouldReallyUse) {
|
|
}
|
|
}
|
|
|
|
message DummyMessageThatNoOneWouldReallyUse {
|
|
}
|