Merge "Extracted NotificationInvokerImpl to separate class."
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / impl / BindingDOMNotificationListenerAdapter.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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 package org.opendaylight.controller.md.sal.binding.impl;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
12 import org.opendaylight.controller.md.sal.dom.api.DOMNotificationListener;
13 import org.opendaylight.controller.sal.binding.spi.NotificationInvokerFactory;
14 import org.opendaylight.yangtools.binding.data.codec.api.BindingNormalizedNodeSerializer;
15 import org.opendaylight.yangtools.yang.binding.Notification;
16
17 class BindingDOMNotificationListenerAdapter implements DOMNotificationListener {
18
19     private final NotificationInvokerFactory.NotificationInvoker invoker;
20     private final BindingNormalizedNodeSerializer codec;
21
22     public BindingDOMNotificationListenerAdapter(final BindingNormalizedNodeSerializer codec, final NotificationInvokerFactory.NotificationInvoker invoker) {
23         this.codec = codec;
24         this.invoker = invoker;
25     }
26
27     @Override
28     public void onNotification(@Nonnull final DOMNotification notification) {
29         final Notification baNotification =
30                 codec.fromNormalizedNodeNotification(notification.getType(), notification.getBody());
31         invoker.getInvocationProxy().onNotification(baNotification);
32     }
33 }