blob: 16fe53498a868e873f465af26ef145bc27693a7d [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001syntax = "proto3";
2option java_package = "org.onosproject.grpc.net.models";
3
4package Link;
5
6import "ConnectPointProto.proto";
7import "LinkEnums.proto";
8
9message LinkDescription {
10 ConnectPoint.ConnectPoint src = 1;
11 ConnectPoint.ConnectPoint dst = 2;
12 Link.LinkType type = 3;
13 map<string, string> annotations = 4;
14}