diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-08-11 13:04:56 +0200 |
---|---|---|
committer | Maros Marsalek <mmarsale@cisco.com> | 2016-08-19 12:49:56 +0200 |
commit | 83efb0ff929801a5a2ab89f6b66c07ed940a309d (patch) | |
tree | 8d8ce5dec617fe8227c3089600a256f72842e6fb /infra/notification/impl | |
parent | 0f5925e907ab8f37eefc29a1843f4beb6ba9f4a8 (diff) |
HONEYCOMB-19 Minimal distro ans wiring for hc infra
Change-Id: I8f0e577ac91106e6025f7f2f27811f850e1c5253
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'infra/notification/impl')
-rw-r--r-- | infra/notification/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/honeycomb/params/xml/ns/yang/notification/impl/rev160601/HoneycombNotificationToNetconfTranslatorModule.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/infra/notification/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/honeycomb/params/xml/ns/yang/notification/impl/rev160601/HoneycombNotificationToNetconfTranslatorModule.java b/infra/notification/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/honeycomb/params/xml/ns/yang/notification/impl/rev160601/HoneycombNotificationToNetconfTranslatorModule.java index 734d340e8..a6f625589 100644 --- a/infra/notification/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/honeycomb/params/xml/ns/yang/notification/impl/rev160601/HoneycombNotificationToNetconfTranslatorModule.java +++ b/infra/notification/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/honeycomb/params/xml/ns/yang/notification/impl/rev160601/HoneycombNotificationToNetconfTranslatorModule.java @@ -1,6 +1,5 @@ package org.opendaylight.yang.gen.v1.urn.honeycomb.params.xml.ns.yang.notification.impl.rev160601; -import com.google.common.annotations.VisibleForTesting; import io.fd.honeycomb.notification.NotificationCollector; import io.fd.honeycomb.notification.impl.NotificationProducerRegistry; import java.io.IOException; @@ -96,8 +95,7 @@ public class HoneycombNotificationToNetconfTranslatorModule extends org.opendayl }; } - @VisibleForTesting - static NetconfNotification notificationToXml(final DOMNotification domNotification, final SchemaContext ctx) { + public static NetconfNotification notificationToXml(final DOMNotification domNotification, final SchemaContext ctx) { LOG.trace("Transforming notification: {} into XML", domNotification.getType()); final SchemaPath type = domNotification.getType(); |