X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FClosedTransactionException.java;fp=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FClosedTransactionException.java;h=10bee071a5d34c8deb91756de5ff8a020363f2ff;hb=139f7a412c8d96fa9d03113439d622c30218c7ce;hp=ece472056473df653610cb9c51fe1e9918c28c55;hpb=a2aa9ed45fe099f6d3611fc22338bfcaebd6d084;p=controller.git diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ClosedTransactionException.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ClosedTransactionException.java index ece4720564..10bee071a5 100644 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ClosedTransactionException.java +++ b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ClosedTransactionException.java @@ -7,7 +7,7 @@ */ package org.opendaylight.controller.cluster.access.commands; -import com.google.common.annotations.Beta; +import java.io.Serial; import org.opendaylight.controller.cluster.access.concepts.RequestException; /** @@ -15,11 +15,9 @@ import org.opendaylight.controller.cluster.access.concepts.RequestException; * been closed, either via a successful commit or abort (which is indicated via {@link #isSuccessful()}. This can * happen if the corresponding journal record is replicated, but the message to the frontend gets lost and the backed * leader moved before the frontend retried the corresponding request. - * - * @author Robert Varga */ -@Beta public final class ClosedTransactionException extends RequestException { + @Serial private static final long serialVersionUID = 1L; private final boolean successful;