X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCanCommitTransactionReply.java;h=9c8909c2dd0f339e00ec64ccda57b098d1fd4567;hp=bbcd4de03facf583db5e9def54d9512bde2ebb1b;hb=f9f6d8ed4b12e39386801f6b16b9485f5558336e;hpb=c352d8958cf16d2eded7bb103b7be69546164ce5 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CanCommitTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CanCommitTransactionReply.java index bbcd4de03f..9c8909c2dd 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CanCommitTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CanCommitTransactionReply.java @@ -11,24 +11,26 @@ package org.opendaylight.controller.cluster.datastore.messages; import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; public class CanCommitTransactionReply implements SerializableMessage { - public static Class SERIALIZABLE_CLASS = ThreePhaseCommitCohortMessages.CanCommitTransactionReply.class; - private final Boolean canCommit; + public static Class SERIALIZABLE_CLASS = + ThreePhaseCommitCohortMessages.CanCommitTransactionReply.class; - public CanCommitTransactionReply(Boolean canCommit) { - this.canCommit = canCommit; - } + private final Boolean canCommit; - public Boolean getCanCommit() { - return canCommit; - } + public CanCommitTransactionReply(Boolean canCommit) { + this.canCommit = canCommit; + } - @Override - public Object toSerializable() { - return ThreePhaseCommitCohortMessages.CanCommitTransactionReply.newBuilder().setCanCommit(canCommit).build(); - } + public Boolean getCanCommit() { + return canCommit; + } + @Override + public Object toSerializable() { + return ThreePhaseCommitCohortMessages.CanCommitTransactionReply.newBuilder().setCanCommit(canCommit).build(); + } - public static CanCommitTransactionReply fromSerializable(Object message) { - return new CanCommitTransactionReply(((ThreePhaseCommitCohortMessages.CanCommitTransactionReply)message).getCanCommit()); - } + public static CanCommitTransactionReply fromSerializable(Object message) { + return new CanCommitTransactionReply( + ((ThreePhaseCommitCohortMessages.CanCommitTransactionReply) message).getCanCommit()); + } }