Merge "Modify config code generator to write JmxAttribute as static fields."
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / NetconfTestImplModule.java
1
2
3 package org.opendaylight.controller.config.yang.test.impl;
4 public class NetconfTestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractNetconfTestImplModule {
5     public NetconfTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
6         super(identifier, dependencyResolver);
7     }
8
9     public NetconfTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, org.opendaylight.controller.config.yang.test.impl.NetconfTestImplModule oldModule, java.lang.AutoCloseable oldInstance) {
10         super(identifier, dependencyResolver, oldModule, oldInstance);
11     }
12
13     @Override
14     public void customValidation() {
15         // add custom validation form module attributes here.
16     }
17
18     @Override
19     public java.lang.AutoCloseable createInstance() {
20 return NetconfTestImplModuleUtil.registerRuntimeBeans(this);
21
22     }
23
24 }