Add new cds-access-api proxies
[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 final class IncrementTransactionSequenceRequestProxyV1
11         extends AbstractReadTransactionRequestProxyV1<IncrementTransactionSequenceRequest>
12         implements IncrementTransactionSequenceRequest.SerialForm {
13     @java.io.Serial
14     private static final long serialVersionUID = -7345885599575376005L;
15
16     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
17     // be able to create instances via reflection.
18     @SuppressWarnings("checkstyle:RedundantModifier")
19     public IncrementTransactionSequenceRequestProxyV1() {
20         // For Externalizable
21     }
22
23     IncrementTransactionSequenceRequestProxyV1(final IncrementTransactionSequenceRequest request) {
24         super(request);
25     }
26 }