X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fmdsal-common-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fcommon%2Fapi%2FPostPreCommitStep.java;h=d3a7760d9d667e3399d35d47ac96e21d0106b7e9;hb=fccffa7abd9d12d3269000b4844d00c35799e156;hp=2941786b417176177d6edeb2b23ca82c5c393583;hpb=f9612830b21a218cf216c299246a08e4079bfbd6;p=mdsal.git diff --git a/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/PostPreCommitStep.java b/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/PostPreCommitStep.java index 2941786b41..d3a7760d9d 100644 --- a/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/PostPreCommitStep.java +++ b/common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/PostPreCommitStep.java @@ -12,7 +12,6 @@ import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; /** - * * User implementation of steps following pre-commit from Three-Phase Protocol. * */ @@ -22,7 +21,6 @@ public interface PostPreCommitStep extends ThreePhaseCommitStep { /** * No-op implementation of {@link #abort()} and {@link #commit()} method, which always success * calls. - * * This implementation is intended for users which may not need to implement commit and abort * method. * @@ -45,12 +43,9 @@ public interface PostPreCommitStep extends ThreePhaseCommitStep { ListenableFuture NOOP_FUTURE = Futures.immediateFuture(NOOP); /** - * * Commits cohort transaction. - * * This callback is invoked by three-phase commit coordinator if associated data transaction * finished pre-commit phase and will be commited. - * * Implementation should make state, which were derived by implementation from associated data * visible. *