More cds-access-api cleanup
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / TransactionCanCommitSuccess.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 java.io.Serial;
11 import org.opendaylight.controller.cluster.access.ABIVersion;
12 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
13
14 /**
15  * Successful reply to a coordinated commit request initiated by a {@link ModifyTransactionRequest}
16  * or {@link CommitLocalTransactionRequest}.
17  *
18  * @author Robert Varga
19  */
20 public final class TransactionCanCommitSuccess extends TransactionSuccess<TransactionCanCommitSuccess> {
21     @Serial
22     private static final long serialVersionUID = 1L;
23
24     public TransactionCanCommitSuccess(final TransactionIdentifier identifier, final long sequence) {
25         super(identifier, sequence);
26     }
27
28     @Override
29     protected AbstractTransactionSuccessProxy<TransactionCanCommitSuccess> externalizableProxy(
30             final ABIVersion version) {
31         return new TransactionCanCommitSuccessProxyV1(this);
32     }
33
34     @Override
35     protected TransactionCanCommitSuccess cloneAsVersion(final ABIVersion version) {
36         return this;
37     }
38 }