b50ff024c6c970cb54237142a6ddeb1b580ac51b
[netconf.git] / opendaylight / netconf / netconf-notifications-impl / src / main / java / org / opendaylight / controller / config / yang / netconf / northbound / notification / impl / NetconfNotificationManagerModule.java
1 package org.opendaylight.controller.config.yang.netconf.northbound.notification.impl;
2
3 import org.opendaylight.netconf.notifications.impl.NetconfNotificationManager;
4
5 public class NetconfNotificationManagerModule extends org.opendaylight.controller.config.yang.netconf.northbound.notification.impl.AbstractNetconfNotificationManagerModule {
6     public NetconfNotificationManagerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
7         super(identifier, dependencyResolver);
8     }
9
10     public NetconfNotificationManagerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, org.opendaylight.controller.config.yang.netconf.northbound.notification.impl.NetconfNotificationManagerModule oldModule, java.lang.AutoCloseable oldInstance) {
11         super(identifier, dependencyResolver, oldModule, oldInstance);
12     }
13
14     @Override
15     public void customValidation() {
16         // add custom validation form module attributes here.
17     }
18
19     @Override
20     public java.lang.AutoCloseable createInstance() {
21         return new NetconfNotificationManager();
22     }
23
24 }