BUG-865: get rid of InstanceIdentifier-related warnings
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-uses-to-augment / baz.yang
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 module baz {
9     yang-version 1;
10     namespace "urn:opendaylight.baz";
11     prefix "baz";
12
13     import foo {
14         prefix "fo";
15         revision-date 2013-10-08;
16     }
17
18     import bar {
19         prefix "br";
20         revision-date 2013-10-08;
21     }
22
23     revision "2013-10-08" {
24     }
25
26
27
28     augment "/br:network-topology/br:topology/br:link/fo:igp-link-attributes" {
29         uses link-attributes;
30     }
31
32     grouping link-attributes {
33         container ospf-link-attributes {
34             leaf multi-topology-id {
35                 type uint8 {
36                     range "0..127";
37                 }
38             }
39         }
40     }
41
42 }