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