Bug 8900 - fixing ACL updates
[groupbasedpolicy.git] / neutron-vpp-mapper / src / main / yang / neutron-vpp-mapper-impl.yang
1 /*
2  * Copyright (c) 2016 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
9 module neutron-vpp-mapper-impl {
10
11     yang-version 1;
12     namespace "urn:opendaylight:params:xml:ns:yang:controller:config:neutron-vpp-mapper:impl";
13     prefix "neutron-vpp-mapper-impl";
14
15     import config { prefix config; revision-date 2013-04-05; }
16     import opendaylight-md-sal-binding { prefix mdsal; revision-date 2013-10-28; }
17
18     description
19         "This module contains the base YANG definitions for
20         neutron-vpp-mapper implementation.";
21
22     revision "2016-04-25" {
23         description
24             "Initial revision.";
25     }
26
27     // This is the definition of the service implementation as a module identity.
28     identity neutron-vpp-mapper-impl {
29         base config:module-type;
30
31         // Specifies the prefix for generated java classes.
32         config:java-name-prefix NeutronVppMapper;
33     }
34
35     // Augments the 'configuration' choice node under modules/module.
36     augment "/config:modules/config:module/config:configuration" {
37         case neutron-vpp-mapper-impl {
38             when "/config:modules/config:module/config:type = 'neutron-vpp-mapper-impl'";
39         }
40     }
41 }