Fix: removed tabs from yang files.
[controller.git] / opendaylight / config / threadpool-config-impl / src / main / yang / threadpool-impl-scheduled.yang
1 module threadpool-impl-scheduled {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:threadpool:impl:scheduled";
4     prefix "th-java-scheduled";
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-scheduled {
31         base config:module-type;
32         config:provided-service th:scheduled-threadpool;
33         config:java-name-prefix ScheduledThreadPool;
34     }
35
36     augment "/config:modules/config:module/config:configuration" {
37         case threadpool-scheduled {
38             when "/config:modules/config:module/config:type = 'threadpool-scheduled'";
39             leaf max-thread-count {
40                 type uint16;
41             }
42
43             container threadFactory {
44                 uses config:service-ref {
45                     refine type {
46                      //   mandatory true;
47                         config:required-identity th:threadfactory;
48                     }
49                 }
50             }
51         }
52     }
53 }