Merge "Add missing copyright text"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ReadWriteShardDataTreeTransaction.java
1 /*
2  * Copyright (c) 2015 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.datastore;
9
10 import com.google.common.base.Preconditions;
11 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
12
13 final class ReadWriteShardDataTreeTransaction extends AbstractShardDataTreeTransaction<DataTreeModification> {
14     private final ShardDataTreeTransactionParent parent;
15
16     protected ReadWriteShardDataTreeTransaction(final ShardDataTreeTransactionParent parent, final String id, final DataTreeModification modification) {
17         super(id, modification);
18         this.parent = Preconditions.checkNotNull(parent);
19     }
20
21     @Override
22     void abort() {
23         Preconditions.checkState(close(), "Transaction is already closed");
24
25         parent.abortTransaction(this);
26     }
27
28     ShardDataTreeCohort ready() {
29         Preconditions.checkState(close(), "Transaction is already closed");
30
31         return parent.finishTransaction(this);
32     }
33 }