Merge "Bug 1764 - added service for pushing default node configuration"
[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 SERIALIZABLE_CLASS = ShardTransactionMessages.ReadyTransactionReply.class;
15   private final String cohortPath;
16
17   public ReadyTransactionReply(String cohortPath) {
18
19     this.cohortPath = cohortPath;
20   }
21
22   public String getCohortPath() {
23     return cohortPath;
24   }
25
26   @Override
27   public ShardTransactionMessages.ReadyTransactionReply toSerializable() {
28     return ShardTransactionMessages.ReadyTransactionReply.newBuilder()
29         .setActorPath(cohortPath).build();
30   }
31
32   public static ReadyTransactionReply fromSerializable(Object serializable) {
33       ShardTransactionMessages.ReadyTransactionReply o =
34           (ShardTransactionMessages.ReadyTransactionReply) serializable;
35
36       return new ReadyTransactionReply(o.getActorPath());
37
38   }
39 }