Bharat saraswal | d14cbe8 | 2016-07-14 13:26:18 +0530 | [diff] [blame] | 1 | module test { |
2 | namespace "xpath:intra:multi"; | ||||
3 | prefix test ; | ||||
4 | |||||
5 | organization ""; | ||||
6 | contact ""; | ||||
7 | |||||
8 | description | ||||
9 | "Defines basic service types for L3VPN service."; | ||||
10 | |||||
11 | revision "2015-12-16" { | ||||
12 | reference ""; | ||||
13 | } | ||||
14 | |||||
15 | container cont1 { | ||||
16 | leaf leaf1 { | ||||
17 | type int32; | ||||
18 | } | ||||
19 | container cont2 { | ||||
20 | leaf leaf2 { | ||||
21 | type int32; | ||||
22 | } | ||||
23 | container cont3 { | ||||
24 | leaf leaf3 { | ||||
25 | type int32; | ||||
26 | } | ||||
27 | } | ||||
28 | } | ||||
29 | } | ||||
30 | |||||
31 | augment /cont1/cont2/cont3 { | ||||
32 | leaf a { | ||||
33 | type int32; | ||||
34 | } | ||||
35 | container cont4 { | ||||
36 | leaf leaf2 { | ||||
37 | type int32; | ||||
38 | } | ||||
39 | } | ||||
40 | } | ||||
41 | |||||
42 | augment /cont1/cont2/cont3/cont4 { | ||||
43 | leaf a { | ||||
44 | type int32; | ||||
45 | } | ||||
46 | |||||
47 | container cont5 { | ||||
48 | leaf leaf1 { | ||||
49 | type int32; | ||||
50 | } | ||||
51 | } | ||||
52 | } | ||||
53 | } | ||||
54 |