Merge "Add reverse() method in Edge and Path classes"
[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 io.netty.util.concurrent.EventExecutor;
21 import io.netty.util.concurrent.GlobalEventExecutor;
22 import org.opendaylight.controller.config.yang.netty.eventexecutor.AutoCloseableEventExecutor.CloseableEventExecutorMixin;
23
24 public final class GlobalEventExecutorModule extends
25         org.opendaylight.controller.config.yang.netty.eventexecutor.AbstractGlobalEventExecutorModule {
26
27     public GlobalEventExecutorModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
28             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
29         super(identifier, dependencyResolver);
30     }
31
32     public GlobalEventExecutorModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
33             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
34             GlobalEventExecutorModule oldModule, java.lang.AutoCloseable oldInstance) {
35         super(identifier, dependencyResolver, oldModule, oldInstance);
36     }
37
38     @Override
39     public void validate() {
40         super.validate();
41     }
42
43     @Override
44     public java.lang.AutoCloseable createInstance() {
45         EventExecutor eventExecutor = GlobalEventExecutor.INSTANCE;
46         return CloseableEventExecutorMixin.createCloseableProxy(eventExecutor);
47     }
48
49
50
51 }