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%2FDataExistsReply.java;h=12a4600a4c28565e263868a17412c4e7cd847b2e;hp=24ca6464543911c9d4c6d05fe1f3f2d8731c920e;hb=f36285090c8125003ea7848598ce1c91125ec849;hpb=621ad520d61103e0e5c19cff5a1b00bdd11db86f diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java index 24ca646454..12a4600a4c 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java @@ -10,28 +10,38 @@ package org.opendaylight.controller.cluster.datastore.messages; import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; -public class DataExistsReply implements SerializableMessage{ +public class DataExistsReply implements SerializableMessage { public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.DataExistsReply.class; + private static final DataExistsReply TRUE = new DataExistsReply(true, null); + private static final DataExistsReply FALSE = new DataExistsReply(false, null); + private static final ShardTransactionMessages.DataExistsReply SERIALIZABLE_TRUE = + ShardTransactionMessages.DataExistsReply.newBuilder().setExists(true).build(); + private static final ShardTransactionMessages.DataExistsReply SERIALIZABLE_FALSE = + ShardTransactionMessages.DataExistsReply.newBuilder().setExists(false).build(); + private final boolean exists; - public DataExistsReply(final boolean exists) { + private DataExistsReply(final boolean exists, final Void dummy) { this.exists = exists; } + public static DataExistsReply create(final boolean exists) { + return exists ? TRUE : FALSE; + } + public boolean exists() { return exists; } - @Override public Object toSerializable() { - return ShardTransactionMessages.DataExistsReply.newBuilder() - .setExists(exists).build(); + @Override + public Object toSerializable() { + return exists ? SERIALIZABLE_TRUE : SERIALIZABLE_FALSE; } - public static DataExistsReply fromSerializable(final Object serializable){ + public static DataExistsReply fromSerializable(final Object serializable) { ShardTransactionMessages.DataExistsReply o = (ShardTransactionMessages.DataExistsReply) serializable; - return new DataExistsReply(o.getExists()); + return create(o.getExists()); } - }