Do not generate 'isFoo()' methods
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / shard / ListenableDOMDataTreeShard.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.ro. 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.mdsal.dom.spi.shard;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.mdsal.dom.api.DOMDataTreeShard;
12
13 /**
14  * A {@link DOMDataTreeShard} which allows registration of listeners, allowing realization of the DOMDataTreeService's
15  * registerListener contract. Note that producer/consumer as well as the logical data store type are taken care of
16  * by the caller, hence implementations of this interface only need to take care of communicating with their subshards.
17  *
18  * @deprecated This interface is scheduled for removal in the next major release.
19  */
20 @Deprecated(forRemoval = true)
21 @Beta
22 public interface ListenableDOMDataTreeShard extends DOMDataTreeShard, DOMDataTreeListenerRegistry {
23
24 }