Added following mapping:
[controller.git] / opendaylight / sal / yang-prototype / code-generator / samples / maven-code-gen-sample / src / main / yang / 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     typedef typedef-string {
14         type string {
15             length "40";
16             pattern "[0-9A-F]\.*";
17             pattern "[B-D]*";
18             pattern "[4-7]*";
19         }
20     }
21
22 }