5bd805c37cc1f1be899e61a92306382b413ea614
[openflowjava.git] / openflow-protocol-api / src / main / yang / system-notifications.yang
1 /*
2  * Copyright (c) 2013 Pantheon Technologies 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
9  module system-notifications {
10     namespace "urn:opendaylight:openflow:system";
11     prefix "ofs";
12
13     revision "2013-09-27" {
14         description "#NOT_PUBLISHED# Model of system messages used in OpenFlow Protocol Library";
15     }
16
17     notification disconnect-event {
18         description "Disconnect notification";
19         leaf info {
20             type string;
21         }
22     }
23
24     notification switch-idle-event {
25         description "Switch-idle notification";
26         leaf info {
27             type string;
28         }
29     }
30
31 }