blob: 0957e15926403313fab0150ab1a786956918f33f [file] [log] [blame]
Bharat saraswald14cbe82016-07-14 13:26:18 +05301module test1 {
2 namespace "xpath:inter:single";
3 prefix test1 ;
4
5 import test2{
6 prefix test2;
7 }
8
9 organization "";
10 contact "";
11
12 description
13 "Defines basic service types for L3VPN service.";
14
15 revision "2015-12-16" {
16 reference "";
17 }
18
19
20 container cont1 {
21 leaf leaf1 {
22 type int32;
23 }
24 }
25
26 augment /cont1 {
27 container cont2 {
28 leaf leaf1 {
29 type int32;
30 }
31 container cont2 {
Bharat saraswalaf413b82016-07-14 15:18:20 +053032 leaf leaf3 {
Bharat saraswald14cbe82016-07-14 13:26:18 +053033 type int32;
34 }
35 }
36 }
37 }
38
39 augment /test2:cont1/test2:cont2/test2:cont3 {
Bharat saraswalaf413b82016-07-14 15:18:20 +053040 leaf leaf2 {
Bharat saraswald14cbe82016-07-14 13:26:18 +053041 type int32;
42 }
43
44 container cont2 {
Bharat saraswalaf413b82016-07-14 15:18:20 +053045 leaf leaf4 {
Bharat saraswald14cbe82016-07-14 13:26:18 +053046 type int32;
47 }
48 }
49 }
50}
51