a9dd058b005375547bf1bf834b7a5db8a98edefd
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / ForwardedReadyTransaction.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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 package org.opendaylight.controller.cluster.datastore.messages;
9
10 import com.google.common.base.Preconditions;
11 import org.opendaylight.controller.cluster.datastore.ReadWriteShardDataTreeTransaction;
12
13 /**
14  * Transaction ReadyTransaction message that is forwarded to the local Shard from the ShardTransaction.
15  *
16  * @author Thomas Pantelis
17  */
18 public class ForwardedReadyTransaction {
19     private final String transactionID;
20     private final ReadWriteShardDataTreeTransaction transaction;
21     private final boolean doImmediateCommit;
22     private final short txnClientVersion;
23
24     public ForwardedReadyTransaction(String transactionID, short txnClientVersion,
25             ReadWriteShardDataTreeTransaction transaction, boolean doImmediateCommit) {
26         this.transactionID = Preconditions.checkNotNull(transactionID);
27         this.transaction = Preconditions.checkNotNull(transaction);
28         this.txnClientVersion = txnClientVersion;
29         this.doImmediateCommit = doImmediateCommit;
30     }
31
32     public String getTransactionID() {
33         return transactionID;
34     }
35
36     public ReadWriteShardDataTreeTransaction getTransaction() {
37         return transaction;
38     }
39
40     public short getTxnClientVersion() {
41         return txnClientVersion;
42     }
43
44     public boolean isDoImmediateCommit() {
45         return doImmediateCommit;
46     }
47
48     @Override
49     public String toString() {
50         return "ForwardedReadyTransaction [transactionID=" + transactionID + ", doImmediateCommit=" + doImmediateCommit
51                 + ", txnClientVersion=" + txnClientVersion + "]";
52     }
53 }