Improve RpcProviderRegistry loading
[controller.git] / opendaylight / config / threadpool-config-impl / src / main / yang / threadpool-impl-flexible.yang
1 module threadpool-impl-flexible {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:threadpool:impl:flexible";
4     prefix "th-java-flexible";
5
6     import threadpool { prefix th; revision-date 2013-04-09; }
7     import config { prefix config; revision-date 2013-04-05; }
8     import rpc-context { prefix rpcx; revision-date 2013-06-17; }
9
10     organization "Cisco Systems, Inc.";
11
12     contact "Robert Varga <rovarga@cisco.com>";
13
14     description
15         "This module contains the base YANG definitions for
16         thread services pure Java implementation.
17
18         Copyright (c)2013 Cisco Systems, Inc. All rights reserved.;
19
20         This program and the accompanying materials are made available
21         under the terms of the Eclipse Public License v1.0 which
22         accompanies this distribution, and is available at
23         http://www.eclipse.org/legal/epl-v10.html";
24
25     revision "2013-12-01" {
26         description
27             "Initial revision";
28     }
29
30     identity threadpool-flexible {
31         base config:module-type;
32         config:provided-service th:threadpool;
33         config:java-name-prefix FlexibleThreadPool;
34     }
35
36     augment "/config:modules/config:module/config:configuration" {
37         case threadpool-flexible {
38             when "/config:modules/config:module/config:type = 'threadpool-flexible'";
39             leaf max-thread-count {
40                 type uint16;
41             }
42             leaf minThreadCount {
43                 type uint16;
44             }
45             leaf keepAliveMillis {
46                 type uint32;
47             }
48
49             container threadFactory {
50                 uses config:service-ref {
51                     refine type {
52                        // mandatory true;
53                         config:required-identity th:threadfactory;
54                     }
55                 }
56             }
57         }
58     }
59 }