Deprecate ABIVersion.MAGNESIUM
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / IncrementTransactionSequenceRequestProxyV1.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, 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 @Deprecated(since = "7.0.0", forRemoval = true)
11 final class IncrementTransactionSequenceRequestProxyV1
12         extends AbstractReadTransactionRequestProxyV1<IncrementTransactionSequenceRequest>
13         implements IncrementTransactionSequenceRequest.SerialForm {
14     @java.io.Serial
15     private static final long serialVersionUID = -7345885599575376005L;
16
17     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
18     // be able to create instances via reflection.
19     @SuppressWarnings("checkstyle:RedundantModifier")
20     public IncrementTransactionSequenceRequestProxyV1() {
21         // For Externalizable
22     }
23
24     IncrementTransactionSequenceRequestProxyV1(final IncrementTransactionSequenceRequest request) {
25         super(request);
26     }
27 }