Do not generate 'isFoo()' methods
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / shard / ReadableWriteableDOMDataTreeShard.java
1 /*
2  * Copyright (c) 2016 Cisco 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.mdsal.dom.spi.shard;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.mdsal.dom.spi.store.DOMStoreTreeChangePublisher;
12
13 /**
14  * Marker interface for readable/writeable DOMDataTreeShard.
15  *
16  * @deprecated Use {@link ListenableDOMDataTreeShard} instead.
17  */
18 @Deprecated(forRemoval = true)
19 @Beta
20 public interface ReadableWriteableDOMDataTreeShard extends DOMStoreTreeChangePublisher, WriteableDOMDataTreeShard {
21
22 }