Merge "Fixed as per comments group and meter"
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / controller / config / yang / test / impl / NetconfTestImplModule.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.config.yang.test.impl;
10
11 /**
12 *
13 */
14 public final class NetconfTestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractNetconfTestImplModule
15  {
16
17     public NetconfTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
18         super(identifier, dependencyResolver);
19     }
20
21     public NetconfTestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
22             NetconfTestImplModule oldModule, java.lang.AutoCloseable oldInstance) {
23
24         super(identifier, dependencyResolver, oldModule, oldInstance);
25     }
26
27     @Override
28     protected void customValidation(){
29         // Add custom validation for module attributes here.
30     }
31
32     @Override
33     public java.lang.AutoCloseable createInstance() {
34 return NetconfTestImplModuleUtil.registerRuntimeBeans(this);
35
36     }
37 }