8d696c0448f68fbe0104251d0bf578f83ad1adc6
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / DistributedDataStoreInterface.java
1 /*
2  * Copyright (c) 2016 Brocade Communications 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.cluster.datastore;
9
10 import org.opendaylight.controller.cluster.datastore.utils.ActorUtils;
11 import org.opendaylight.mdsal.dom.spi.store.DOMStore;
12
13 /**
14  * The public interface exposed vi a DistributedDataStore via the OSGi registry.
15  *
16  * @author Thomas Pantelis
17  */
18 public interface DistributedDataStoreInterface extends DOMStore {
19
20     ActorUtils getActorUtils();
21 }