Fixed for bug 1168 : Issue while update subnet
[controller.git] / opendaylight / md-sal / model / model-flow-management / src / main / yang / table-management.yang
1 module table-management {
2     namespace "urn:opendaylight:table:config";
3     prefix table-cfg;
4     
5     import opendaylight-inventory {prefix inv;revision-date "2013-08-19";}
6     import opendaylight-table-types {prefix table;}
7
8     revision "2013-10-24" {
9         description "Initial revision of table service";
10     }
11
12     grouping table-entry {
13     
14         leaf node {
15             type inv:node-ref;
16         }
17         
18         uses table:table-features;
19     }   
20      
21     container tables {
22         list table {
23             key "id node"; 
24                         
25             leaf id {
26                 type uint32;
27             }                    
28             
29             uses table-entry;
30         }
31     }    
32 }