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%2Fmessages%2FCreateTransactionReply.java;h=73b33d7fe27b0c4336be0bc79b63c6296cd4b211;hb=8ec73bf853a9b6708b455c0321a585992e02b125;hp=4faf9d370d56a4dc4bb3edf97de469fb33f95362;hpb=a6690c65b0b60e9aeddc488267b7ee2ba0132c67;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java index 4faf9d370d..73b33d7fe2 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java @@ -8,16 +8,76 @@ package org.opendaylight.controller.cluster.datastore.messages; -import akka.actor.ActorPath; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; +import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; -public class CreateTransactionReply { - private final ActorPath transactionPath; +public class CreateTransactionReply extends VersionedExternalizableMessage { + private static final long serialVersionUID = 1L; - public CreateTransactionReply(ActorPath transactionPath) { - this.transactionPath = transactionPath; - } + private String transactionPath; + private String transactionId; - public ActorPath getTransactionPath() { - return transactionPath; - } + public CreateTransactionReply() { + } + + public CreateTransactionReply(final String transactionPath, final String transactionId, final short version) { + super(version); + this.transactionPath = transactionPath; + this.transactionId = transactionId; + } + + public String getTransactionPath() { + return transactionPath; + } + + public String getTransactionId() { + return transactionId; + } + + @Override + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + super.readExternal(in); + transactionId = in.readUTF(); + transactionPath = in.readUTF(); + } + + @Override + public void writeExternal(ObjectOutput out) throws IOException { + super.writeExternal(out); + out.writeUTF(transactionId); + out.writeUTF(transactionPath); + } + + @Deprecated + @Override + protected Object newLegacySerializedInstance() { + return ShardTransactionMessages.CreateTransactionReply.newBuilder().setTransactionActorPath(transactionPath) + .setTransactionId(transactionId).setMessageVersion(getVersion()).build(); + } + + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("CreateTransactionReply [transactionPath=").append(transactionPath).append(", transactionId=") + .append(transactionId).append(", version=").append(getVersion()).append("]"); + return builder.toString(); + } + + public static CreateTransactionReply fromSerializable(Object serializable) { + if(serializable instanceof CreateTransactionReply) { + return (CreateTransactionReply)serializable; + } else { + ShardTransactionMessages.CreateTransactionReply o = + (ShardTransactionMessages.CreateTransactionReply) serializable; + return new CreateTransactionReply(o.getTransactionActorPath(), o.getTransactionId(), + (short)o.getMessageVersion()); + } + } + + public static boolean isSerializedType(Object message) { + return message instanceof CreateTransactionReply || + message instanceof ShardTransactionMessages.CreateTransactionReply; + } }