Deprecate ABIVersion.MAGNESIUM
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / RequestEnvelopeProxy.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.concepts;
9
10 @Deprecated(since = "7.0.0", forRemoval = true)
11 final class RequestEnvelopeProxy extends AbstractEnvelopeProxy<Request<?, ?>, RequestEnvelope>
12         implements RequestEnvelope.SerialForm {
13     @java.io.Serial
14     private static final long serialVersionUID = 1L;
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 RequestEnvelopeProxy() {
20         // for Externalizable
21     }
22
23     RequestEnvelopeProxy(final RequestEnvelope envelope) {
24         super(envelope);
25     }
26 }