Follow-up to protobuff deprecation
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / NormalizedNodeStreamReader.java
index c619afd7ee9f5c409f76893d5df0ed94b605263e..b055055b4046527b20d0b52283160e4897d4f2de 100644 (file)
@@ -1,23 +1,17 @@
 /*
+ * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
- *  Copyright (c) 2014 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
- *
+ * 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 org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-
-import java.io.IOException;
-
-
-public interface NormalizedNodeStreamReader extends AutoCloseable {
-
-    NormalizedNode<?, ?> readNormalizedNode() throws IOException;
+/**
+ * Interface for a class that can read serialized NormalizedNode instances from a stream.
+ *
+ * @deprecated Use {@link NormalizedNodeDataInput} instead.
+ */
+public interface NormalizedNodeStreamReader extends NormalizedNodeDataInput {
 }