54266f4e840e456c28f1625bec9b5fd27f786e8e
[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 org.opendaylight.controller.config.api.JmxAttributeValidationException;
21
22 /**
23 *
24 */
25 public final class NettyThreadgroupModule extends org.opendaylight.controller.config.yang.netty.threadgroup.AbstractNettyThreadgroupModule
26 {
27     public NettyThreadgroupModule(org.opendaylight.controller.config.api.ModuleIdentifier name, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
28         super(name, dependencyResolver);
29     }
30
31     public NettyThreadgroupModule(org.opendaylight.controller.config.api.ModuleIdentifier name, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, NettyThreadgroupModule oldModule, java.lang.AutoCloseable oldInstance) {
32         super(name, dependencyResolver, oldModule, oldInstance);
33     }
34
35     @Override
36     public void validate(){
37         if(getThreadCount()!=null) {
38             JmxAttributeValidationException.checkCondition(getThreadCount() > 0, "value must be greater than 0",
39                     threadCountJmxAttribute);
40         }
41     }
42
43     @Override
44     public java.lang.AutoCloseable createInstance() {
45         return NioEventLoopGroupCloseable.newInstance(getThreadCount());
46     }
47 }