Merge "Bug 865: Fixed use of removed deprecated YANGInstanceIdentifier methods."
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / ReadyTransactionReply.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.protobuff.messages.transaction.ShardTransactionMessages;
12
13 public class ReadyTransactionReply implements SerializableMessage {
14     public static final Class<ShardTransactionMessages.ReadyTransactionReply> SERIALIZABLE_CLASS =
15             ShardTransactionMessages.ReadyTransactionReply.class;
16
17     private final String cohortPath;
18
19     public ReadyTransactionReply(String cohortPath) {
20
21         this.cohortPath = cohortPath;
22     }
23
24     public String getCohortPath() {
25         return cohortPath;
26     }
27
28     @Override
29     public ShardTransactionMessages.ReadyTransactionReply toSerializable() {
30         return ShardTransactionMessages.ReadyTransactionReply.newBuilder().
31                 setActorPath(cohortPath).build();
32     }
33
34     public static ReadyTransactionReply fromSerializable(Object serializable) {
35         ShardTransactionMessages.ReadyTransactionReply o =
36                 (ShardTransactionMessages.ReadyTransactionReply) serializable;
37
38         return new ReadyTransactionReply(o.getActorPath());
39     }
40 }