added implementation of Identifier and Identifiable from yangtools.concepts
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / NetconfTestImplModule.java
1 /**
2  * Generated file
3
4  * Generated from: yang module name: config-test-impl  yang module local name: impl-netconf
5  * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
6  * Generated at: Fri Sep 27 13:02:28 CEST 2013
7  *
8  * Do not modify this file unless it is present under src/main directory
9  */
10 package org.opendaylight.controller.config.yang.test.impl;
11
12 import org.opendaylight.controller.config.api.ModuleIdentifier;
13
14 /**
15 *
16 */
17 public final class NetconfTestImplModule
18         extends
19         org.opendaylight.controller.config.yang.test.impl.AbstractNetconfTestImplModule {
20
21     public NetconfTestImplModule(
22             org.opendaylight.controller.config.api.ModuleIdentifier name,
23             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
24         super(name, dependencyResolver);
25     }
26
27     public NetconfTestImplModule(
28             org.opendaylight.controller.config.api.ModuleIdentifier name,
29             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
30             NetconfTestImplModule oldModule, java.lang.AutoCloseable oldInstance) {
31         super(name, dependencyResolver, oldModule, oldInstance);
32     }
33
34     @Override
35     public void validate() {
36         super.validate();
37         // Add custom validation for module attributes here.
38     }
39
40     @Override
41     public java.lang.AutoCloseable createInstance() {
42         return new AutoCloseable() {
43             @Override
44             public void close() throws Exception {
45             }
46         };
47     }
48
49 }