Merge "Revert "Add PasswordCredentialAuth interface""
[netconf.git] / netconf / netconf-notifications-impl / src / main / yang / netconf-northbound-notification-impl.yang
1 module netconf-northbound-notification-impl {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:netconf:northbound:notification:impl";
4     prefix "nnnimpl";
5
6     import config { prefix config; revision-date 2013-04-05; }
7     import netconf-northbound-notification { prefix nnn; revision-date 2015-08-06; }
8
9     description
10         "This module contains the base YANG definitions for
11          netconf northbound notifications implementation";
12
13     revision "2015-08-07"{
14         description "Initial revision.";
15     }
16
17     identity netconf-notification-manager {
18         base config:module-type;
19         config:provided-service nnn:netconf-notification-collector;
20         config:provided-service nnn:netconf-notification-registry;
21         config:java-name-prefix NetconfNotificationManager;
22     }
23
24     augment "/config:modules/config:module/config:configuration" {
25         case netconf-notification-manager {
26             when "/config:modules/config:module/config:type = 'netconf-notification-manager'";
27         }
28     }
29 }