X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2Fnotify%2FNotificationService.java;fp=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2Fnotify%2FNotificationService.java;h=0000000000000000000000000000000000000000;hp=9c0db42d6ceaf8007645b026057bc92558727d3b;hb=e42f84e6d4567f36caad1c4162660bb32a473071;hpb=1e12c13aaec75493f70dd759208181f45c385102 diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/notify/NotificationService.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/notify/NotificationService.java deleted file mode 100644 index 9c0db42d6c..0000000000 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/notify/NotificationService.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.sal.core.api.notify; - -import org.opendaylight.controller.sal.core.api.BrokerService; -import org.opendaylight.yangtools.concepts.ListenerRegistration; -import org.opendaylight.yangtools.yang.common.QName; - - -/** - * NotificationService provides access to the notification functionality of the - * SAL. - * - * NotificationService allows for consumption of notifications by registering - * implementations of NotificationListener. - * - * The registration of notification listeners could be done by: - * - * - * - */ -public interface NotificationService extends BrokerService { - - /** - * Registers a notification listener for supplied notification type. - * - * @param notification - * @param listener - */ - ListenerRegistration addNotificationListener(QName notification, - NotificationListener listener); -}