Deprecate ABIVersion.MAGNESIUM
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / TransactionCommitSuccessProxyV1.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 /**
11  * Externalizable proxy for use with {@link TransactionCommitSuccess}. It implements the initial (Boron)
12  * serialization format.
13  */
14 @Deprecated(since = "7.0.0", forRemoval = true)
15 final class TransactionCommitSuccessProxyV1 extends AbstractTransactionSuccessProxy<TransactionCommitSuccess>
16         implements TransactionCommitSuccess.SerialForm {
17     @java.io.Serial
18     private static final long serialVersionUID = 1L;
19
20     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
21     // be able to create instances via reflection.
22     @SuppressWarnings("checkstyle:RedundantModifier")
23     public TransactionCommitSuccessProxyV1() {
24         // For Externalizable
25     }
26
27     TransactionCommitSuccessProxyV1(final TransactionCommitSuccess success) {
28         super(success);
29     }
30 }