Merge "Added requuired-capabilities to the impl/.../config/default-config.xml and...
[controller.git] / opendaylight / md-sal / sal-test-model / src / main / yang / opendaylight-test-notification.yang
1 module opendaylight-test-notification {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:test:bi:ba:notification";
4     prefix "ntf";
5
6     description
7         "Test model for testing of registering notification listener and publishing of notification.";
8
9     revision "2015-02-05" {
10         description
11             "Initial revision";
12     }
13
14     notification out-of-pixie-dust-notification {
15         description "Just a testing notification that we can not fly for now.";
16
17         leaf reason {
18             type string;
19         }
20
21         leaf days-till-new-dust {
22             type uint16;
23         }
24     }
25 }