a147545dd9a84bab87adf68d045c67cfeed9726d
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / IncrementTransactionSequenceSuccess.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 an {@link IncrementTransactionSequenceRequest}.
16  */
17 public final class IncrementTransactionSequenceSuccess extends TransactionSuccess<IncrementTransactionSequenceSuccess> {
18     @Serial
19     private static final long serialVersionUID = 1L;
20
21     public IncrementTransactionSequenceSuccess(final TransactionIdentifier target, final long sequence) {
22         super(target, sequence);
23     }
24
25     @Override
26     protected IncrementTransactionSequenceSuccessProxyV1 externalizableProxy(final ABIVersion version) {
27         return new IncrementTransactionSequenceSuccessProxyV1(this);
28     }
29
30     @Override
31     protected IncrementTransactionSequenceSuccess cloneAsVersion(final ABIVersion version) {
32         return this;
33     }
34 }