BUG-5280: switch transaction IDs from String to TransactionIdentifier
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ReadOnlyShardDataTreeTransaction.java
index 59265682ad3d189d12b741acd106c49c8efa79ac..040a652a0ffbb6c18c1563fc0fdb9b0d304777a5 100644 (file)
@@ -7,10 +7,11 @@
  */
 package org.opendaylight.controller.cluster.datastore;
 
+import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeSnapshot;
 
 final class ReadOnlyShardDataTreeTransaction extends AbstractShardDataTreeTransaction<DataTreeSnapshot> {
-    ReadOnlyShardDataTreeTransaction(final String id, final DataTreeSnapshot snapshot) {
+    ReadOnlyShardDataTreeTransaction(final TransactionIdentifier id, final DataTreeSnapshot snapshot) {
         super(id, snapshot);
     }