Remove netconf-notifications-api service-type config yang
[netconf.git] / netconf / netconf-mapping-api / src / main / yang / netconf-northbound-mapper.yang
1 module netconf-northbound-mapper {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:netconf:north:mapper";
4     prefix "nnm";
5
6     import config { prefix config; revision-date 2013-04-05; }
7
8     description
9         "This module contains the base YANG definitions for
10          mapping services plugged into a netconf northbound server";
11
12     revision "2015-01-14" {
13         description
14             "Initial revision.";
15     }
16
17     identity netconf-northbound-mapper {
18         base "config:service-type";
19         config:java-class "org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactory";
20         config:disable-osgi-service-registration;
21         status deprecated;
22     }
23
24     identity netconf-mapper-registry {
25         base "config:service-type";
26         config:java-class "org.opendaylight.netconf.mapping.api.NetconfOperationServiceFactoryListener";
27         config:disable-osgi-service-registration;
28         status deprecated;
29     }
30
31 }