Merge changes I442a0ee9,I11825b90
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / ReadData.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.InstanceIdentifier;
14
15 public class ReadData {
16   public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.ReadData.class;
17   private final InstanceIdentifier path;
18
19   public ReadData(InstanceIdentifier path) {
20     this.path = path;
21   }
22
23   public InstanceIdentifier getPath() {
24     return path;
25   }
26
27   public Object toSerializable(){
28     return ShardTransactionMessages.ReadData.newBuilder()
29         .setInstanceIdentifierPathArguments(path.toString())
30         .build();
31   }
32
33   public static ReadData fromSerializable(Object serializable){
34     ShardTransactionMessages.ReadData o = (ShardTransactionMessages.ReadData) serializable;
35     return new ReadData(InstanceIdentifierUtils.from(o.getInstanceIdentifierPathArguments()));
36   }
37 }