Merge "Bug 1534: Changed blocking calls to async in dist data store"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / DeleteData.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.datastore.messages;
10
11 import org.opendaylight.controller.cluster.datastore.utils.InstanceIdentifierUtils;
12 import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
14
15 public class DeleteData implements SerializableMessage {
16
17     public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.DeleteData.class;
18
19     private final YangInstanceIdentifier path;
20
21     public DeleteData(YangInstanceIdentifier path) {
22         this.path = path;
23     }
24
25     public YangInstanceIdentifier getPath() {
26         return path;
27     }
28
29     @Override public Object toSerializable() {
30         return ShardTransactionMessages.DeleteData.newBuilder()
31             .setInstanceIdentifierPathArguments(InstanceIdentifierUtils.toSerializable(path)).build();
32     }
33
34     public static DeleteData fromSerializable(Object serializable){
35         ShardTransactionMessages.DeleteData o = (ShardTransactionMessages.DeleteData) serializable;
36         return new DeleteData(InstanceIdentifierUtils.fromSerializable(o.getInstanceIdentifierPathArguments()));
37     }
38 }