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%2FBatchedModificationsReply.java;h=0cca8d03ffa7f4cc5f9d78fbed7698c6fab23446;hb=HEAD;hp=a10c6ac3fb1b6d673a9f8e5b3517e72cebdde9f5;hpb=6dcee56392712348b1abdcdc0d1d5f94dfcf505c;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/BatchedModificationsReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/BatchedModificationsReply.java index a10c6ac3fb..0cca8d03ff 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/BatchedModificationsReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/BatchedModificationsReply.java @@ -16,68 +16,38 @@ import java.io.ObjectOutput; * * @author Thomas Pantelis */ -public class BatchedModificationsReply extends VersionedExternalizableMessage { +@Deprecated(since = "9.0.0", forRemoval = true) +public final class BatchedModificationsReply extends VersionedExternalizableMessage { + @java.io.Serial private static final long serialVersionUID = 1L; - private static final byte COHORT_PATH_NOT_PRESENT = 0; - private static final byte COHORT_PATH_PRESENT = 1; - private int numBatched; - private String cohortPath; public BatchedModificationsReply() { } - public BatchedModificationsReply(int numBatched) { - this.numBatched = numBatched; - } - - public BatchedModificationsReply(int numBatched, String cohortPath) { + public BatchedModificationsReply(final int numBatched) { this.numBatched = numBatched; - this.cohortPath = cohortPath; } public int getNumBatched() { return numBatched; } - public String getCohortPath() { - return cohortPath; - } - @Override - public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + public void readExternal(final ObjectInput in) throws IOException, ClassNotFoundException { super.readExternal(in); numBatched = in.readInt(); - - if(in.readByte() == COHORT_PATH_PRESENT) { - cohortPath = in.readUTF(); - } } @Override - public void writeExternal(ObjectOutput out) throws IOException { + public void writeExternal(final ObjectOutput out) throws IOException { super.writeExternal(out); out.writeInt(numBatched); - - if(cohortPath != null) { - out.writeByte(COHORT_PATH_PRESENT); - out.writeUTF(cohortPath); - } else { - out.writeByte(COHORT_PATH_NOT_PRESENT); - } - } - - @Override - public Object toSerializable() { - return this; } @Override public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append("BatchedModificationsReply [numBatched=").append(numBatched).append(", cohortPath=") - .append(cohortPath).append("]"); - return builder.toString(); + return "BatchedModificationsReply [numBatched=" + numBatched + "]"; } }