78ac362e594e393b2a9128cce895d3e4d2c9f4e7
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / DepTestImplModule.java
1
2
3 package org.opendaylight.controller.config.yang.test.impl;
4 public class DepTestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractDepTestImplModule {
5     public DepTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
6         super(identifier, dependencyResolver);
7     }
8
9     public DepTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, org.opendaylight.controller.config.yang.test.impl.DepTestImplModule 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 new AutoCloseable() {
21             @Override
22             public void close() throws Exception {
23             }
24         };
25
26     }
27
28 }