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%2Fmodification%2FDeleteModification.java;h=d10276b3ea2eab052ded758b63ddee03bc0a3813;hb=2bc808b02828fde2da3dd9bfabab658156faa3c6;hp=593f458afa314f458ad314e6af22701160810c35;hpb=c222e37f2a0f0f3f6266242fbea2d3b018f4e6e3;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/modification/DeleteModification.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/modification/DeleteModification.java index 593f458afa..d10276b3ea 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/modification/DeleteModification.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/modification/DeleteModification.java @@ -8,33 +8,62 @@ package org.opendaylight.controller.cluster.datastore.modification; -import org.opendaylight.controller.cluster.datastore.utils.InstanceIdentifierUtils; -import org.opendaylight.controller.protobuff.messages.persistent.PersistentMessages; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; +import org.opendaylight.controller.cluster.datastore.node.utils.stream.SerializationUtils; import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification; /** - * DeleteModification store all the parameters required to delete a path from the data tree + * DeleteModification store all the parameters required to delete a path from the data tree. */ public class DeleteModification extends AbstractModification { - public DeleteModification(YangInstanceIdentifier path) { - super(path); - } + private static final long serialVersionUID = 1L; - @Override - public void apply(DOMStoreWriteTransaction transaction) { - transaction.delete(path); - } + public DeleteModification() { + this(DataStoreVersions.CURRENT_VERSION); + } + + public DeleteModification(short version) { + super(version); + } + + public DeleteModification(YangInstanceIdentifier path) { + super(path); + } + + @Override + public void apply(DOMStoreWriteTransaction transaction) { + transaction.delete(getPath()); + } + + @Override + public void apply(DataTreeModification transaction) { + transaction.delete(getPath()); + } + + @Override + public byte getType() { + return DELETE; + } + + @Override + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + setPath(SerializationUtils.deserializePath(in)); + } - @Override public Object toSerializable() { - return PersistentMessages.Modification.newBuilder() - .setType(this.getClass().toString()) - .setPath(InstanceIdentifierUtils.toSerializable(this.path)) - .build(); + @Override + public void writeExternal(ObjectOutput out) throws IOException { + SerializationUtils.serializePath(getPath(), out); } - public static DeleteModification fromSerializable(Object serializable){ - PersistentMessages.Modification o = (PersistentMessages.Modification) serializable; - return new DeleteModification(InstanceIdentifierUtils.fromSerializable(o.getPath())); + public static DeleteModification fromStream(ObjectInput in, short version) + throws ClassNotFoundException, IOException { + DeleteModification mod = new DeleteModification(version); + mod.readExternal(in); + return mod; } }