76c98e3dda213d78a26c8c375c317cb27655a3ba
[controller.git] / opendaylight / md-sal / sal-restconf-broker / src / main / java / org / opendaylight / controller / sal / binding / impl / NotificationServiceImpl.java
1 /*
2  * Copyright (c) 2013 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.binding.impl;
9
10 import org.opendaylight.controller.sal.binding.api.NotificationListener;
11 import org.opendaylight.controller.sal.binding.api.NotificationService;
12 import org.opendaylight.yangtools.concepts.Registration;
13 import org.opendaylight.yangtools.yang.binding.Notification;
14
15 public class NotificationServiceImpl implements NotificationService {
16     @Override
17     public <T extends Notification> void addNotificationListener(Class<T> notificationType, NotificationListener<T> listener) {
18
19     }
20
21     @Override
22     public void addNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener) {
23
24     }
25
26     @Override
27     public void removeNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener) {
28
29     }
30
31     @Override
32     public <T extends Notification> void removeNotificationListener(Class<T> notificationType, NotificationListener<T> listener) {
33
34     }
35
36     @Override
37     public <T extends Notification> Registration<NotificationListener<T>> registerNotificationListener(Class<T> notificationType, NotificationListener<T> listener) {
38         //TODO implementation using sal-remote
39         return null;
40     }
41
42     @Override
43     public Registration<org.opendaylight.yangtools.yang.binding.NotificationListener> registerNotificationListener(org.opendaylight.yangtools.yang.binding.NotificationListener listener) {
44         //TODO implementation using sal-remote
45         return null;
46     }
47 }