Bump MRI upstreams
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / transactions / RestconfStrategy.java
index 71dac9899c2f35c99b5929cb8ad682ec4f742619..ce98545deaff7e4017754dc00b4f08a9faa72c8c 100644 (file)
@@ -63,7 +63,7 @@ public abstract class RestconfStrategy {
      * @param path the data object path
      * @return a ListenableFuture containing the result of the read
      */
-    public abstract ListenableFuture<Optional<NormalizedNode<?, ?>>> read(LogicalDatastoreType store,
+    public abstract ListenableFuture<Optional<NormalizedNode>> read(LogicalDatastoreType store,
         YangInstanceIdentifier path);
 
     /**
@@ -74,7 +74,7 @@ public abstract class RestconfStrategy {
      * @param fields paths to selected fields relative to parent path
      * @return a ListenableFuture containing the result of the read
      */
-    public abstract ListenableFuture<Optional<NormalizedNode<?, ?>>> read(LogicalDatastoreType store,
+    public abstract ListenableFuture<Optional<NormalizedNode>> read(LogicalDatastoreType store,
             YangInstanceIdentifier path, List<YangInstanceIdentifier> fields);
 
     /**