Added following mapping:
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / resources / simple-string-demo.yang
1 module simple-string-demo {
2
3     namespace "urn:simple:string:demo";
4     prefix "sbd";
5
6     organization "OPEN DAYLIGHT";
7     contact "http://www.opendaylight.org/";
8
9     revision 2013-06-18 {
10         
11     }
12
13
14     typedef typedef-string {
15         type string {
16             length "40";
17             pattern "[0-9A-F]*";
18             pattern "[B-D]*";
19             pattern "[4-7]*";
20         }
21     }
22
23 }