blob: 9cbbf605e1b61bbfc79be22d8175c8c4b035187c [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001syntax = "proto3";
2option java_package = "org.onosproject.grpc.net.models";
3
4
5import "DeviceProto.proto";
6import "DeviceEnums.proto";
7import "PortProto.proto";
8
9package Device;
10
11// Corresponds to org.onosproject.net.device.DeviceEvent.
12message DeviceNotification {
13 Device.DeviceProto device = 1;
14 Device.DeviceEventType deviceEventType = 2;
15 Port.PortProto port = 3;
16}