Bump to odlparent-9.0.0/yangtools-7.0.1-SNAPSHOT
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / store / DOMStoreWriteTransaction.java
index b07b48fd9e4507b31417e6bdbd5e75309abfc9ba..6005ea553246d16077146dfe2d39146fd5c9b85a 100644 (file)
@@ -25,7 +25,7 @@ public interface DOMStoreWriteTransaction extends DOMStoreTransaction {
      * @throws IllegalStateException if the client code already sealed transaction and invoked
      *         {@link #ready()}
      */
-    void write(YangInstanceIdentifier path, NormalizedNode<?, ?> data);
+    void write(YangInstanceIdentifier path, NormalizedNode data);
 
     /**
      * Store a provided data at specified path. This acts as a add / replace operation, which is to
@@ -40,7 +40,7 @@ public interface DOMStoreWriteTransaction extends DOMStoreTransaction {
      * @throws IllegalStateException if the client code already sealed transaction and invoked
      *         {@link #ready()}
      */
-    void merge(YangInstanceIdentifier path, NormalizedNode<?, ?> data);
+    void merge(YangInstanceIdentifier path, NormalizedNode data);
 
     /**
      * Deletes data and whole subtree located at provided path.