Merge "L3: Add eth to br-ex"
[netvirt.git] / openstack / net-virt-sfc / impl / src / main / yang / netvirt-sfc.yang
1 module netvirt-sfc {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:netvirt:sfc";
4     prefix "netvirt-sfc";
5
6     import config { prefix config; revision-date 2013-04-05; }
7     import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28;}
8
9     description
10         "Service definition for netvirt sfc project";
11
12     revision "2014-12-10" {
13         description
14             "Initial revision";
15     }
16
17     identity netvirt-sfc {
18         base config:module-type;
19         config:java-name-prefix NetvirtSfc;
20     }
21
22     augment "/config:modules/config:module/config:configuration" {
23         case netvirt-sfc {
24             when "/config:modules/config:module/config:type = 'netvirt-sfc'";
25             container broker {
26                 uses config:service-ref {
27                     refine type {
28                         mandatory true;
29                         config:required-identity mdsal:binding-broker-osgi-registry;
30                     }
31                 }
32             }
33
34             leaf of13provider {
35                 type string;
36             }
37         }
38     }
39 }