Merge "Bug 1029: Remove dead code: p2site"
[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         this.cohortPath = cohortPath;
21     }
22
23     public String getCohortPath() {
24         return cohortPath;
25     }
26
27     @Override
28     public ShardTransactionMessages.ReadyTransactionReply toSerializable() {
29         return ShardTransactionMessages.ReadyTransactionReply.newBuilder()
30                 .setActorPath(cohortPath)
31                 .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 }