Add new cds-access-api proxies
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / SkipTransactionsResponseProxyV1.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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 SkipTransactionsResponse}. It implements the initial (Phosphorus SR1)
12  * serialization format.
13  */
14 final class SkipTransactionsResponseProxyV1 extends AbstractTransactionSuccessProxy<SkipTransactionsResponse>
15         implements SkipTransactionsResponse.SerialForm {
16     @java.io.Serial
17     private static final long serialVersionUID = 1L;
18
19     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
20     // be able to create instances via reflection.
21     @SuppressWarnings("checkstyle:RedundantModifier")
22     public SkipTransactionsResponseProxyV1() {
23         // For Externalizable
24     }
25
26     SkipTransactionsResponseProxyV1(final SkipTransactionsResponse success) {
27         super(success);
28     }
29 }