Merge "Prevent ConfigPusher from killing its thread"
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / sal / dom / broker / osgi / NotificationServiceProxy.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.NotificationService;
12 import org.opendaylight.yangtools.concepts.Registration;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.osgi.framework.ServiceReference;
15
16 public class NotificationServiceProxy extends AbstractBrokerServiceProxy<NotificationService> implements
17         NotificationService {
18
19     public NotificationServiceProxy(ServiceReference<NotificationService> ref, NotificationService delegate) {
20         super(ref, delegate);
21     }
22
23     @Override
24     public Registration<NotificationListener> addNotificationListener(QName notification, NotificationListener listener) {
25         return addRegistration(getDelegate().addNotificationListener(notification, listener));
26     }
27 }