X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FLocalTransactionReadySupport.java;h=103af19dd319cdf3041afcb8507bfce8f83818fb;hb=546cd1fd100dbaa36908b22c2f422320dbd8c4b2;hp=e03f3d2433dc0a817e23e17e1da674ccc6ee5f0d;hpb=340a2d4c979ac6f8d5adff8bd9e1c9f724e7a164;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalTransactionReadySupport.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalTransactionReadySupport.java index e03f3d2433..103af19dd3 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalTransactionReadySupport.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LocalTransactionReadySupport.java @@ -7,7 +7,9 @@ */ package org.opendaylight.controller.cluster.datastore; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction; +import org.eclipse.jdt.annotation.NonNull; +import org.eclipse.jdt.annotation.Nullable; +import org.opendaylight.mdsal.dom.spi.store.DOMStoreWriteTransaction; /** * Interface for a class that can "ready" a transaction. @@ -15,5 +17,6 @@ import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction; * @author Thomas Pantelis */ interface LocalTransactionReadySupport { - LocalThreePhaseCommitCohort onTransactionReady(DOMStoreWriteTransaction tx); + LocalThreePhaseCommitCohort onTransactionReady(@NonNull DOMStoreWriteTransaction tx, + @Nullable Exception operationError); }