ONOS-6714 DisjointPath Protobuf model

Change-Id: I7d37ca07531c2e6fe52b1a3bc84388e3a59d2c03
This commit is contained in:
wu 2017-07-04 14:50:24 +08:00 committed by shaoyong wu
parent c4ae94d4e3
commit 312f124a4b

View File

@ -0,0 +1,13 @@
syntax = "proto3";
option java_package = "org.onosproject.grpc.net.models";
package net;
import "net/PathProto.proto";
// Corresponds to org.onosproject.net.DisjointPath.
message DisjointPathProto {
net.PathProto primary = 1;
net.PathProto backup = 2;
map<string, string> annotations = 3;
}