Merge "BUG-190 Simplify reconnect logic in protocol-framework."
[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 akka.actor.ActorPath;
12 import akka.actor.ActorSystem;
13 import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
14
15 public class ReadyTransactionReply implements SerializableMessage {
16   public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.ReadyTransactionReply.class;
17   private final ActorPath cohortPath;
18
19   public ReadyTransactionReply(ActorPath cohortPath) {
20
21     this.cohortPath = cohortPath;
22   }
23
24   public ActorPath getCohortPath() {
25     return cohortPath;
26   }
27
28   @Override
29   public ShardTransactionMessages.ReadyTransactionReply toSerializable() {
30     return ShardTransactionMessages.ReadyTransactionReply.newBuilder()
31         .setActorPath(cohortPath.toString()).build();
32   }
33
34   public static ReadyTransactionReply fromSerializable(ActorSystem actorSystem,Object serializable){
35     ShardTransactionMessages.ReadyTransactionReply o = (ShardTransactionMessages.ReadyTransactionReply) serializable;
36     return new ReadyTransactionReply(
37         actorSystem.actorFor(o.getActorPath()).path());
38   }
39 }