2880b46d1f56829befc5d7be3714d67c4094f563
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / TestImplModule.java
1 package org.opendaylight.controller.config.yang.test.impl;
2 public class TestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractTestImplModule {
3     public TestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
4         super(identifier, dependencyResolver);
5     }
6
7     public TestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, org.opendaylight.controller.config.yang.test.impl.TestImplModule oldModule, java.lang.AutoCloseable oldInstance) {
8         super(identifier, dependencyResolver, oldModule, oldInstance);
9     }
10
11     @Override
12     public void customValidation() {
13         // add custom validation form module attributes here.
14     }
15
16     @Override
17     public java.lang.AutoCloseable createInstance() {
18         return new AutoCloseable() {
19             @Override
20             public void close() throws Exception {
21             }
22         };
23
24     }
25
26 }