Adjust regenerated files to match what latest and greatest yang-tools will produce.
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / DepTestImplModule.java
1 package org.opendaylight.controller.config.yang.test.impl;
2 public class DepTestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractDepTestImplModule {
3     public DepTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
4         super(identifier, dependencyResolver);
5     }
6
7     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) {
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 }