Add support for coded QNames/AugmentationIdentifiers
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / ForwardingNormalizedNodeDataInput.java
index 590a8b0205a8d2d392e79deb8beffbf7d14a6bb5..97beda38aa945abc2c5d079db34c23663e0aa054 100644 (file)
@@ -38,4 +38,9 @@ abstract class ForwardingNormalizedNodeDataInput extends ForwardingDataInput imp
     public final SchemaPath readSchemaPath() throws IOException {
         return delegate().readSchemaPath();
     }
+
+    @Override
+    public final NormalizedNodeStreamVersion getVersion() throws IOException {
+        return delegate().getVersion();
+    }
 }