Removed checkstyle warnings.
[bgpcep.git] / pcep / topology-provider-config / src / main / java / org / opendaylight / controller / config / yang / pcep / topology / provider / Stateful02TopologySessionListenerModule.java
1 /*
2  * Copyright (c) 2014 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  * Generated file
10
11  * Generated from: yang module name: config-pcep-topology-provider  yang module local name: pcep-topology-stateful02
12  * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
13  * Generated at: Mon Jan 27 11:08:05 CET 2014
14  *
15  * Do not modify this file unless it is present under src/main directory
16  */
17 package org.opendaylight.controller.config.yang.pcep.topology.provider;
18
19 import org.opendaylight.bgpcep.pcep.topology.provider.Stateful02TopologySessionListenerFactory;
20
21 /**
22  *
23  */
24 public final class Stateful02TopologySessionListenerModule extends
25         org.opendaylight.controller.config.yang.pcep.topology.provider.AbstractStateful02TopologySessionListenerModule {
26
27     public Stateful02TopologySessionListenerModule(final org.opendaylight.controller.config.api.ModuleIdentifier identifier,
28             final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
29         super(identifier, dependencyResolver);
30     }
31
32     public Stateful02TopologySessionListenerModule(final org.opendaylight.controller.config.api.ModuleIdentifier identifier,
33             final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
34             final Stateful02TopologySessionListenerModule oldModule, final java.lang.AutoCloseable oldInstance) {
35
36         super(identifier, dependencyResolver, oldModule, oldInstance);
37     }
38
39     @Override
40     protected void customValidation() {
41         // Add custom validation for module attributes here.
42     }
43
44     @Override
45     public java.lang.AutoCloseable createInstance() {
46         return new AutoCloseableStateful02TopologySessionListenerFactory();
47     }
48
49     private static final class AutoCloseableStateful02TopologySessionListenerFactory extends Stateful02TopologySessionListenerFactory
50             implements AutoCloseable {
51         @Override
52         public void close() {
53             // Nothing to do
54         }
55     }
56 }