BUG-9223:Remove hardcoded value of lldp interval
[openflowplugin.git] / model / model-flow-service / src / main / yang / flow-topology-discovery.yang
1 module flow-topology-discovery {
2     namespace "urn:opendaylight:flow:topology:discovery";
3     prefix flow-node-topo;
4
5     import opendaylight-inventory {prefix inv;revision-date "2013-08-19";}
6
7     description "Legacy topology API.";
8     
9     revision "2013-08-19" {
10         description "Flow Capable Node extensions to the Inventory model";
11     }
12     
13
14     grouping link {
15         leaf source {
16             type inv:node-connector-ref;
17         }
18         leaf destination {
19             type inv:node-connector-ref;
20         }
21     }
22
23     notification link-discovered {
24         status deprecated;
25         uses link;
26     }
27     
28     notification link-overutilized {
29         status deprecated;
30         uses link;
31     }
32     
33     notification link-removed {
34         status deprecated;
35         uses link;
36     }
37     
38     notification link-utilization-normal {
39         status deprecated;
40         uses link;
41     }
42
43     rpc solicit-refresh {
44         status deprecated;
45     }
46
47 }