Merge "Add some unimplemented proxy classes related to DOMStore"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ListenerRegistrationProxy.java
1 package org.opendaylight.controller.cluster.datastore;
2
3 import org.opendaylight.yangtools.concepts.ListenerRegistration;
4
5 /**
6  * ListenerRegistrationProxy acts as a proxy for a ListenerRegistration that was done on a remote shard
7  *
8  * Registering a DataChangeListener on the Data Store creates a new instance of the ListenerRegistrationProxy
9  * The ListenerRegistrationProxy talks to a remote ListenerRegistration actor.
10  */
11 public class ListenerRegistrationProxy implements ListenerRegistration {
12     @Override
13     public Object getInstance() {
14         throw new UnsupportedOperationException("getInstance");
15     }
16
17     @Override
18     public void close() {
19         throw new UnsupportedOperationException("close");
20     }
21 }