Merge "Adding some more traces for better debuggability"
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / sal / dom / broker / osgi / NotificationPublishServiceProxy.java
1 /*
2  * Copyright (c) 2014 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.sal.dom.broker.osgi;
9
10 import org.opendaylight.controller.sal.core.api.notify.NotificationListener;
11 import org.opendaylight.controller.sal.core.api.notify.NotificationPublishService;
12 import org.opendaylight.yangtools.concepts.Registration;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
15 import org.osgi.framework.ServiceReference;
16
17 public class NotificationPublishServiceProxy extends AbstractBrokerServiceProxy<NotificationPublishService> implements NotificationPublishService {
18
19     public NotificationPublishServiceProxy(ServiceReference<NotificationPublishService> ref,
20             NotificationPublishService delegate) {
21         super(ref, delegate);
22     }
23
24     @Override
25     public Registration<NotificationListener> addNotificationListener(QName notification, NotificationListener listener) {
26         return addRegistration(getDelegate().addNotificationListener(notification, listener));
27
28     }
29
30     @Override
31     public void publish(CompositeNode notification) {
32         getDelegate().publish(notification);
33     }
34 }