BUG-693 Config module for netconf client dispatcher.
[controller.git] / opendaylight / config / netconf-config-dispatcher / src / main / java / org / opendaylight / controller / config / yang / config / netconf / client / dispatcher / NetconfClientDispatcherModule.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.controller.config.yang.config.netconf.client.dispatcher;
9
10 import org.opendaylight.controller.netconf.client.NetconfClientDispatcherImpl;
11
12 /**
13 *
14 */
15 public final class NetconfClientDispatcherModule extends org.opendaylight.controller.config.yang.config.netconf.client.dispatcher.AbstractNetconfClientDispatcherModule
16  {
17
18     public NetconfClientDispatcherModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
19         super(identifier, dependencyResolver);
20     }
21
22     public NetconfClientDispatcherModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
23             NetconfClientDispatcherModule oldModule, java.lang.AutoCloseable oldInstance) {
24
25         super(identifier, dependencyResolver, oldModule, oldInstance);
26     }
27
28     @Override
29     protected void customValidation(){
30     }
31
32     @Override
33     public java.lang.AutoCloseable createInstance() {
34         return new NetconfClientDispatcherImpl(getBossThreadGroupDependency(), getWorkerThreadGroupDependency(), getTimerDependency());
35     }
36 }