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=dd16edd5a758f0e51727de511f9868c72b2a1dd0;hp=81fd6eeabf49e62e2ad5f53ee4dadd8dc4bc4068;hpb=f1c47fb514878ef2149e5f22d6098ff8c79dec1d;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 81fd6eeabf..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,30 +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; -/** - * This is being deprecated to use sal-protocolbuff-encoding ShardTransactionMessages.CreateTransactionReply - * This classes will be removed once complete integration of distribute datastore with - * sal-protocolbuff-encoding is done. - */ +public class CreateTransactionReply extends VersionedExternalizableMessage { + private static final long serialVersionUID = 1L; + + private String transactionPath; + private String transactionId; -@Deprecated -public class CreateTransactionReply { - private final ActorPath transactionPath; - private final String transactionId; + public CreateTransactionReply() { + } - public CreateTransactionReply(ActorPath transactionPath, - String transactionId) { + public CreateTransactionReply(final String transactionPath, final String transactionId, final short version) { + super(version); this.transactionPath = transactionPath; this.transactionId = transactionId; } - public ActorPath getTransactionPath() { + 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; + } }