BUG-4626: Introduce NormalizedNodeData{Input,Output}
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NormalizedNodeStreamReader.java
index ae4fed4b72e128c3750873afaa5626e59b660dbb..b055055b4046527b20d0b52283160e4897d4f2de 100644 (file)
@@ -8,13 +8,10 @@
 
 package org.opendaylight.controller.cluster.datastore.node.utils.stream;
 
-import java.io.IOException;
-import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-
 /**
  * Interface for a class that can read serialized NormalizedNode instances from a stream.
+ *
+ * @deprecated Use {@link NormalizedNodeDataInput} instead.
  */
-public interface NormalizedNodeStreamReader {
-
-    NormalizedNode<?, ?> readNormalizedNode() throws IOException;
+public interface NormalizedNodeStreamReader extends NormalizedNodeDataInput {
 }