Introduce top-level pom file.
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / resources / compilation / augment-of-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 { prefix fo; revision-date 2013-10-08; }
14     import bar { prefix br; revision-date 2013-10-08; }
15
16     revision "2013-10-08" {
17     }
18
19     augment "/fo:update/fo:path-attributes/br:mp-unreach-nlri/br:withdrawn-routes/br:destination-type" {
20         case destination-linkstate {
21             uses linkstate-destination;
22             container links {
23                 container source {
24                     container address {}
25                 }
26             }
27         }
28     }
29
30     grouping linkstate-destination {
31         leaf nlri-type {
32             type string;
33         }
34         leaf protocol-id {
35             type string;
36         }
37     }
38
39 }