X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-spi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fspi%2Fdata%2FDOMStoreWriteTransaction.java;h=3aaf006f3723cab7336d7aa66ba565f9eb947975;hb=refs%2Fchanges%2F04%2F69104%2F2;hp=ddabbc6c030f3f8ef098d207b2b250f737288ddc;hpb=35563cb3c795ab92d0e85c34e3b3bab5da0c73bc;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/DOMStoreWriteTransaction.java b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/DOMStoreWriteTransaction.java index ddabbc6c03..3aaf006f37 100644 --- a/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/DOMStoreWriteTransaction.java +++ b/opendaylight/md-sal/sal-dom-spi/src/main/java/org/opendaylight/controller/sal/core/spi/data/DOMStoreWriteTransaction.java @@ -7,9 +7,7 @@ */ package org.opendaylight.controller.sal.core.spi.data; -import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; -import org.opendaylight.yangtools.concepts.Path; -import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; public interface DOMStoreWriteTransaction extends DOMStoreTransaction { @@ -19,53 +17,42 @@ public interface DOMStoreWriteTransaction extends DOMStoreTransaction { * operation, which is to say that whole subtree will be replaced by * specified path. * + *

* If you need add or merge of current object with specified use - * {@link #merge(LogicalDatastoreType, Path, Object)} - * - * - * @param path - * @param data - * Data object to be written + * {@link #merge(YangInstanceIdentifier, NormalizedNode)}. * + * @param path the path to write + * @param data data object to be written * @throws IllegalStateException * if the client code already sealed transaction and invoked * {@link #ready()} */ - void write(InstanceIdentifier 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 say that whole subtree will be replaced by * specified path. * - * If you need add or merge of current object with specified use - * {@link #merge(LogicalDatastoreType, Path, Object)} - * - * - * @param path - * @param data - * Data object to be written - * + * @param path the path to write + * @param data data object to be written * @throws IllegalStateException * if the client code already sealed transaction and invoked * {@link #ready()} */ - void merge(InstanceIdentifier path, NormalizedNode data); + void merge(YangInstanceIdentifier path, NormalizedNode data); /** - * * Deletes data and whole subtree located at provided path. * - * @param path - * Path to delete + * @param path path to delete * @throws IllegalStateException * if the client code already sealed transaction and invoked * {@link #ready()} */ - void delete(InstanceIdentifier path); + void delete(YangInstanceIdentifier path); /** - * * Seals transaction, and returns three-phase commit cohort associated * with this transaction and DOM Store to be coordinated by coordinator. *