X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fnode%2Futils%2Fstream%2FNormalizedNodeDataInput.java;h=be391ef181a155447bf0d80520b674966e832af2;hp=f2a1b9a6d28be29121910dd3371d2234a07d0499;hb=HEAD;hpb=87c8362c7501408b281f5ddc9b78ed7440280fa1 diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/NormalizedNodeDataInput.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/NormalizedNodeDataInput.java deleted file mode 100644 index f2a1b9a6d2..0000000000 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/NormalizedNodeDataInput.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) 2014, 2015 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.node.utils.stream; - -import com.google.common.annotations.Beta; -import java.io.DataInput; -import java.io.IOException; -import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; -import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; -import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;; - -/** - * Interface for reading {@link NormalizedNode}s, {@link YangInstanceIdentifier}s and {@link PathArgument}s. - */ -@Beta -public interface NormalizedNodeDataInput extends DataInput { - /** - * Read a normalized node from the reader. - * - * @return Next node from the stream, or null if end of stream has been reached. - * @throws IOException if an error occurs - * @throws IllegalStateException if the dictionary has been detached - */ - NormalizedNode readNormalizedNode() throws IOException; - - YangInstanceIdentifier readYangInstanceIdentifier() throws IOException; - - PathArgument readPathArgument() throws IOException; -}