Add MD-SAL artifacts
[controller.git] / opendaylight / config / netty-threadgroup-config / src / main / java / org / opendaylight / controller / config / yang / netty / threadgroup / NettyThreadgroupModule.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: nsos-threadpool  yang module local name: netty-threadgroup-fixed
13 * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
14 * Generated at: Fri Nov 08 08:31:45 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.threadgroup;
19
20 import io.netty.channel.nio.NioEventLoopGroup;
21
22 import org.opendaylight.controller.config.api.JmxAttributeValidationException;
23
24 import java.util.concurrent.TimeUnit;
25
26 /**
27 *
28 */
29 public final class NettyThreadgroupModule extends org.opendaylight.controller.config.yang.netty.threadgroup.AbstractNettyThreadgroupModule
30 {
31     public NettyThreadgroupModule(org.opendaylight.controller.config.api.ModuleIdentifier name, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
32         super(name, dependencyResolver);
33     }
34
35     public NettyThreadgroupModule(org.opendaylight.controller.config.api.ModuleIdentifier name, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, NettyThreadgroupModule oldModule, java.lang.AutoCloseable oldInstance) {
36         super(name, dependencyResolver, oldModule, oldInstance);
37     }
38
39     @Override
40     public void validate(){
41         if(getThreadCount()!=null) {
42             JmxAttributeValidationException.checkCondition(getThreadCount() > 0, "value must be greater than 0",
43                     threadCountJmxAttribute);
44         }
45     }
46
47     @Override
48     public java.lang.AutoCloseable createInstance() {
49         return getThreadCount()==null ? new NioEventLoopGroupCloseable() : new NioEventLoopGroupCloseable(getThreadCount());
50     }
51
52
53     private class NioEventLoopGroupCloseable extends NioEventLoopGroup implements AutoCloseable {
54
55
56         public NioEventLoopGroupCloseable(int threadCount) {
57             super(threadCount);
58         }
59
60         public NioEventLoopGroupCloseable() {
61             super();
62         }
63
64         @Override
65         public void close() throws Exception {
66             shutdownGracefully(0, 1, TimeUnit.SECONDS);
67         }
68     }
69 }