Remove yang-test
[controller.git] / opendaylight / config / yang-jmx-generator / src / test / resources / org / opendaylight / controller / config / yangjmxgenerator / unknownextension / test-ifcWithUnknownExtension.yang
1 // vi: set smarttab et sw=4 tabstop=4:
2 module config-threads {
3     yang-version 1;
4     namespace "urn:opendaylight:params:xml:ns:yang:controller:threads";
5     prefix "th";
6
7     import config { prefix config; revision-date 2013-04-05; }
8
9     revision "2013-05-02" {
10         description
11             "Add test";
12     }
13
14     extension java-class2 {
15         description
16             "YANG language extension carrying the fully-qualified name of
17              a Java class. Code generation tools use the provided reference
18              to tie a specific construct to its Java representation.";
19
20         argument "name";
21     }
22
23     identity eventbus {
24         description
25             "Service representing an event bus. The service acts as message
26              router between event producers and event consumers";
27
28         base "config:service-type";
29         th:java-class2 "com.google.common.eventbus.EventBus";
30     }
31
32 }