blob: dd0297830323c600d336a663e7e461fa5be07ca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
module websocketmanager {
yang-version 1;
namespace "urn:opendaylight:params:xml:ns:yang:websocketmanager";
prefix "websocketmanager";
revision "2015-01-05" {
description "Initial revision of websocketmanager model";
}
rpc websocket-event {
input {
leaf nodeName {
type string;
}
leaf eventType {
type string;
}
leaf xmlEvent {
type string;
}
}
output {
leaf response {
type string;
}
}
}
notification messagePushed {
leaf message {
type string;
}
}
}
|