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=9fc53a867c49bae51507eb63f22f7fa6cf2c0a31;hpb=461173ce10acbd8597b8f4c6ccb6c98c7a99447c;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 9fc53a867c..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,8 +7,8 @@ */ package org.opendaylight.controller.cluster.datastore; -import javax.annotation.Nonnull; -import javax.annotation.Nullable; +import org.eclipse.jdt.annotation.NonNull; +import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.mdsal.dom.spi.store.DOMStoreWriteTransaction; /** @@ -17,6 +17,6 @@ import org.opendaylight.mdsal.dom.spi.store.DOMStoreWriteTransaction; * @author Thomas Pantelis */ interface LocalTransactionReadySupport { - LocalThreePhaseCommitCohort onTransactionReady(@Nonnull DOMStoreWriteTransaction tx, + LocalThreePhaseCommitCohort onTransactionReady(@NonNull DOMStoreWriteTransaction tx, @Nullable Exception operationError); }