X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Frestconf%2Fsal-restconf-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fsal%2Frestconf%2Fbroker%2Flisteners%2FRemoteNotificationListener.java;fp=opendaylight%2Frestconf%2Fsal-restconf-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fsal%2Frestconf%2Fbroker%2Flisteners%2FRemoteNotificationListener.java;h=1b86f05ab9f62dbd8beceb01fe68d892305c2741;hb=fb51830c78bc7bea76746fe369619be34fc164e5;hp=0000000000000000000000000000000000000000;hpb=c80633eb6bc5a70751550dfb629dc3c19802729f;p=netconf.git diff --git a/opendaylight/restconf/sal-restconf-broker/src/main/java/org/opendaylight/netconf/sal/restconf/broker/listeners/RemoteNotificationListener.java b/opendaylight/restconf/sal-restconf-broker/src/main/java/org/opendaylight/netconf/sal/restconf/broker/listeners/RemoteNotificationListener.java new file mode 100644 index 0000000000..1b86f05ab9 --- /dev/null +++ b/opendaylight/restconf/sal-restconf-broker/src/main/java/org/opendaylight/netconf/sal/restconf/broker/listeners/RemoteNotificationListener.java @@ -0,0 +1,24 @@ +/* + * 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.netconf.sal.restconf.broker.listeners; + +import org.opendaylight.controller.sal.binding.api.NotificationListener; +import org.opendaylight.yangtools.yang.binding.Notification; + +public class RemoteNotificationListener implements org.opendaylight.yangtools.yang.binding.NotificationListener { + + NotificationListener listener; + + public RemoteNotificationListener(NotificationListener listener){ + this.listener = listener; + } + public NotificationListener getListener() { + return this.listener; + } + +}