X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FListenerRegistrationProxy.java;h=a548a885eb2c73600e013ccf3a0cd46fe34950d9;hp=19e7f198dfb33572c82a26512a495721ba228169;hb=744726a5d58c50102bb391dc9e4f9bd8defb691a;hpb=8ad0b28e56c6d0a1ce5cef45fae22d6fdea7f976 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ListenerRegistrationProxy.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ListenerRegistrationProxy.java index 19e7f198df..a548a885eb 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ListenerRegistrationProxy.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ListenerRegistrationProxy.java @@ -1,5 +1,14 @@ +/* + * Copyright (c) 2014 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.cluster.datastore; +import akka.actor.ActorPath; import org.opendaylight.yangtools.concepts.ListenerRegistration; /** @@ -9,6 +18,13 @@ import org.opendaylight.yangtools.concepts.ListenerRegistration; * The ListenerRegistrationProxy talks to a remote ListenerRegistration actor. */ public class ListenerRegistrationProxy implements ListenerRegistration { + private final ActorPath listenerRegistrationPath; + + public ListenerRegistrationProxy(ActorPath listenerRegistrationPath) { + + this.listenerRegistrationPath = listenerRegistrationPath; + } + @Override public Object getInstance() { throw new UnsupportedOperationException("getInstance");