Fix checkstyle warnings in opendaylight/config
[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     public NetconfClientDispatcherModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
18         super(identifier, dependencyResolver);
19     }
20
21     public NetconfClientDispatcherModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
22             NetconfClientDispatcherModule oldModule, java.lang.AutoCloseable oldInstance) {
23
24         super(identifier, dependencyResolver, oldModule, oldInstance);
25     }
26
27     @Override
28     protected void customValidation(){
29     }
30
31     @Override
32     public java.lang.AutoCloseable createInstance() {
33         return new NetconfClientDispatcherImpl(getBossThreadGroupDependency(), getWorkerThreadGroupDependency(), getTimerDependency());
34     }
35 }