BUG-5280: implement backend message handling
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / ModifyTransactionSuccess.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 com.google.common.annotations.Beta;
11 import org.opendaylight.controller.cluster.access.ABIVersion;
12 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
13
14 /**
15  * Response to a {@link ModifyTransactionRequest} which does not have a {@link PersistenceProtocol}.
16  *
17  * @author Robert Varga
18  */
19 @Beta
20 public final class ModifyTransactionSuccess extends TransactionSuccess<ModifyTransactionSuccess> {
21     private static final long serialVersionUID = 1L;
22
23     public ModifyTransactionSuccess(final TransactionIdentifier identifier, final long sequence) {
24         super(identifier, sequence);
25     }
26
27     private ModifyTransactionSuccess(final ModifyTransactionSuccess success, final ABIVersion version) {
28         super(success, version);
29     }
30
31     @Override
32     protected AbstractTransactionSuccessProxy<ModifyTransactionSuccess> externalizableProxy(final ABIVersion version) {
33         return new ModifyTransactionSuccessProxyV1(this);
34     }
35
36     @Override
37     protected ModifyTransactionSuccess cloneAsVersion(final ABIVersion version) {
38         return new ModifyTransactionSuccess(this, version);
39     }
40 }