694dcda3ef367c0284a9b4f008fbaf456ac6803f
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / impl / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / params / xml / ns / yang / __artifactId__ / impl / rev141210 / __classPrefix__Module.java
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 /*
5  * Copyright © ${copyrightYear} ${copyright} and others.  All rights reserved.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
9  * and is available at http://www.eclipse.org/legal/epl-v10.html
10  */
11 package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.${artifactId}.impl.rev141210;
12
13 import org.opendaylight.controller.config.api.DependencyResolver;
14 import org.opendaylight.controller.config.api.ModuleIdentifier;
15 import ${package}.impl.${classPrefix}Provider;
16
17 public class ${classPrefix}Module extends Abstract${classPrefix}Module {
18
19     public ${classPrefix}Module(ModuleIdentifier identifier, DependencyResolver dependencyResolver) {
20         super(identifier, dependencyResolver);
21     }
22
23     public ${classPrefix}Module(ModuleIdentifier identifier, DependencyResolver dependencyResolver, ${classPrefix}Module oldModule,
24             AutoCloseable oldInstance) {
25         super(identifier, dependencyResolver, oldModule, oldInstance);
26     }
27
28     @Override
29     public void customValidation() {
30         // add custom validation form module attributes here.
31     }
32
33     @Override
34     public java.lang.AutoCloseable createInstance() {
35         ${classPrefix}Provider provider = new ${classPrefix}Provider();
36         getBrokerDependency().registerProvider(provider);
37         return provider;
38     }
39
40 }