Fixed discard-changes for mdsal netconf, mapping code cleanup.
[controller.git] / opendaylight / md-sal / 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     revision "2013-08-19" {
8         description "Flow Capable Node extensions to the Inventory model";
9     }
10     
11
12     grouping link {
13         leaf source {
14             type inv:node-connector-ref;
15         }
16         leaf destination {
17             type inv:node-connector-ref;
18         }
19     }
20
21
22     notification link-discovered {
23         uses link;
24     }
25     
26     notification link-overutilized {
27         uses link;
28     }
29     
30     notification link-removed {
31         uses link;
32     }
33     
34     notification link-utilization-normal {
35         uses link;
36     }
37
38     rpc solicit-refresh {
39     
40     }
41
42 }