blob: f0331bc07fab1f6b465e6164cd15ff9915463022 (
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
|
module notification-api {
yang-version 1;
namespace "urn:honeycomb:params:xml:ns:yang:notification:api";
prefix "hc-notif-a";
import config { prefix config; revision-date 2013-04-05; }
description
"Module definition for honeycomb notification service APIs";
revision "2016-06-01" {
description
"Initial revision";
}
identity honeycomb-notification-collector {
base "config:service-type";
config:java-class io.fd.honeycomb.notification.NotificationCollector;
}
identity dom-notification-service {
base "config:service-type";
config:java-class org.opendaylight.controller.md.sal.dom.broker.impl.DOMNotificationRouter;
}
identity honeycomb-notification-producer {
base "config:service-type";
config:java-class io.fd.honeycomb.notification.ManagedNotificationProducer;
}
}
|