Propagate notification status to generated listener methods
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal554.yang
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. 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 module test-listener {
9     yang-version 1;
10     namespace "urn:opendaylight:test-listener";
11     prefix "t";
12
13     revision "2020-10-22" {
14     }
15
16     notification deprecated-notification {
17         description "Just a testing deprecated notification.";
18         status deprecated;
19     }
20
21     notification obsolete-notification {
22         description "Just a testing obsolete notification.";
23         status obsolete;
24     }
25
26     notification test-notification {
27         description "Just a testing notification.";
28     }
29 }