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=2e0dbb9fd1bbc813d15a8ede4174e60c1b8911a8;hpb=2becbbc76732b4845a660ea9e5352cd7087e0f73;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 2e0dbb9fd1..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,9 +7,9 @@ */ package org.opendaylight.controller.cluster.datastore; -import javax.annotation.Nonnull; -import javax.annotation.Nullable; -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. @@ -17,6 +17,6 @@ import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction; * @author Thomas Pantelis */ interface LocalTransactionReadySupport { - LocalThreePhaseCommitCohort onTransactionReady(@Nonnull DOMStoreWriteTransaction tx, + LocalThreePhaseCommitCohort onTransactionReady(@NonNull DOMStoreWriteTransaction tx, @Nullable Exception operationError); }