Add blueprint wiring for netty configs
[controller.git] / opendaylight / config / netty-event-executor-config / src / main / java / org / opendaylight / controller / config / yang / netty / eventexecutor / GlobalEventExecutorModule.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 /**
10  * Generated file
11
12  * Generated from: yang module name: netty-event-executor  yang module local name: netty-global-event-executor
13  * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
14  * Generated at: Tue Nov 12 10:44:21 CET 2013
15  *
16  * Do not modify this file unless it is present under src/main directory
17  */
18 package org.opendaylight.controller.config.yang.netty.eventexecutor;
19
20 import org.opendaylight.controller.config.yang.netty.eventexecutor.AutoCloseableEventExecutor.CloseableEventExecutorMixin;
21
22 public final class GlobalEventExecutorModule extends
23         org.opendaylight.controller.config.yang.netty.eventexecutor.AbstractGlobalEventExecutorModule {
24
25     public GlobalEventExecutorModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
26             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
27         super(identifier, dependencyResolver);
28     }
29
30     public GlobalEventExecutorModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
31             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
32             GlobalEventExecutorModule oldModule, java.lang.AutoCloseable oldInstance) {
33         super(identifier, dependencyResolver, oldModule, oldInstance);
34     }
35
36     @Override
37     public void validate() {
38         super.validate();
39     }
40
41     @Override
42     public java.lang.AutoCloseable createInstance() {
43         return CloseableEventExecutorMixin.globalEventExecutor();
44     }
45
46
47
48 }