ce9b1f72fe7b0e0e36b78d6b83870d4c4440a96c
[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 final class RequestEnvelopeProxy extends AbstractEnvelopeProxy<Request<?, ?>, RequestEnvelope>
11         implements RequestEnvelope.SerialForm {
12     @java.io.Serial
13     private static final long serialVersionUID = 1L;
14
15     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
16     // be able to create instances via reflection.
17     @SuppressWarnings("checkstyle:RedundantModifier")
18     public RequestEnvelopeProxy() {
19         // for Externalizable
20     }
21
22     RequestEnvelopeProxy(final RequestEnvelope envelope) {
23         super(envelope);
24     }
25 }