BUG-5626: make CloseTransactionChain implement Identifiable
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CloseTransactionChain.java
index efa51fde2090c3762f8d32e5d75b2a4a50c77757..24c0c5cab100ebb04851bc3be14aac547cf51894 100644 (file)
@@ -8,12 +8,49 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionChainMessages;
-
-public class CloseTransactionChain implements SerializableMessage{
-  public static final Class SERIALIZABLE_CLASS = ShardTransactionChainMessages.CloseTransactionChain.class;
-  @Override
-  public Object toSerializable() {
-    return ShardTransactionChainMessages.CloseTransactionChain.newBuilder().build();
-  }
+import com.google.common.base.Preconditions;
+import java.io.IOException;
+import java.io.ObjectInput;
+import java.io.ObjectOutput;
+import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
+import org.opendaylight.yangtools.concepts.Identifiable;
+
+public class CloseTransactionChain extends VersionedExternalizableMessage implements Identifiable<LocalHistoryIdentifier> {
+    private static final long serialVersionUID = 1L;
+
+    private LocalHistoryIdentifier transactionChainId;
+
+    public CloseTransactionChain() {
+    }
+
+    public CloseTransactionChain(final LocalHistoryIdentifier transactionChainId, final short version) {
+        super(version);
+        this.transactionChainId = Preconditions.checkNotNull(transactionChainId);
+    }
+
+    @Override
+    public LocalHistoryIdentifier getIdentifier() {
+        return transactionChainId;
+    }
+
+    @Override
+    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
+        super.readExternal(in);
+        transactionChainId = LocalHistoryIdentifier.readFrom(in);
+    }
+
+    @Override
+    public void writeExternal(ObjectOutput out) throws IOException {
+        super.writeExternal(out);
+        transactionChainId.writeTo(out);
+    }
+
+    public static CloseTransactionChain fromSerializable(final Object serializable){
+        Preconditions.checkArgument(serializable instanceof CloseTransactionChain);
+        return (CloseTransactionChain)serializable;
+    }
+
+    public static boolean isSerializedType(Object message) {
+        return message instanceof CloseTransactionChain;
+    }
 }