use of org.opendaylight.controller.cluster.datastore.modification.MutableCompositeModification in project controller by opendaylight.
the class AbstractShardTest method prepareBatchedModifications.
protected static BatchedModifications prepareBatchedModifications(final TransactionIdentifier transactionID, final YangInstanceIdentifier path, final NormalizedNode<?, ?> data, final boolean doCommitOnReady) {
final MutableCompositeModification modification = new MutableCompositeModification();
modification.addModification(new WriteModification(path, data));
return prepareBatchedModifications(transactionID, modification, doCommitOnReady);
}
Aggregations