1f739515c99c6f0c6eb1c4e960a97ebc4f3b113f
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / CommitLocalTransactionRequest.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.controller.cluster.access.commands;
9
10 import akka.actor.ActorRef;
11 import com.google.common.annotations.Beta;
12 import com.google.common.base.MoreObjects.ToStringHelper;
13 import com.google.common.base.Preconditions;
14 import javax.annotation.Nonnull;
15 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
16 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
17
18 /**
19  * Request to commit a local transaction. Since local transactions do not introduce state on the backend until they
20  * are ready, this message carries a complete set of modifications.
21  *
22  * @author Robert Varga
23  */
24 @Beta
25 public final class CommitLocalTransactionRequest extends AbstractLocalTransactionRequest<CommitLocalTransactionRequest> {
26     private static final long serialVersionUID = 1L;
27     private final DataTreeModification mod;
28     private final boolean coordinated;
29
30     public CommitLocalTransactionRequest(final @Nonnull TransactionIdentifier identifier,
31             final @Nonnull ActorRef replyTo, final @Nonnull DataTreeModification mod, final boolean coordinated) {
32         super(identifier, replyTo);
33         this.mod = Preconditions.checkNotNull(mod);
34         this.coordinated = coordinated;
35     }
36
37     public DataTreeModification getModification() {
38         return mod;
39     }
40
41     /**
42      * Indicate if this is a coordinated, multi-backend request. If this method returns true, the backend must
43      * act as a cohort participating in the three-phase commit (3PC) protocol to commit this transaction.  If this
44      * method returns false, the backend should proceed to commit the transaction and respond once the commit completes
45      * or fails to complete.
46      *
47      * @return Indication of coordinated commit.
48      */
49     public boolean isCoordinated() {
50         return coordinated;
51     }
52
53     @Override
54     protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
55         return super.addToStringAttributes(toStringHelper).add("coordinated", coordinated);
56     }
57 }