Merge "BUG 2676 : Use notification-dispatcher for DataChangeListener actors"
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / config / yang / config / netconf / northbound / impl / NetconfMapperAggregatorModule.java
1 package org.opendaylight.controller.config.yang.config.netconf.northbound.impl;
2
3 import org.opendaylight.controller.netconf.impl.osgi.AggregatedNetconfOperationServiceFactory;
4
5 public class NetconfMapperAggregatorModule extends org.opendaylight.controller.config.yang.config.netconf.northbound.impl.AbstractNetconfMapperAggregatorModule {
6     public NetconfMapperAggregatorModule(final org.opendaylight.controller.config.api.ModuleIdentifier identifier, final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
7         super(identifier, dependencyResolver);
8     }
9
10     public NetconfMapperAggregatorModule(final org.opendaylight.controller.config.api.ModuleIdentifier identifier, final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, final org.opendaylight.controller.config.yang.config.netconf.northbound.impl.NetconfMapperAggregatorModule oldModule, final java.lang.AutoCloseable oldInstance) {
11         super(identifier, dependencyResolver, oldModule, oldInstance);
12     }
13
14     @Override
15     public void customValidation() {}
16
17     @Override
18     public java.lang.AutoCloseable createInstance() {
19         return new AggregatedNetconfOperationServiceFactory();
20     }
21
22 }