20b46fcb50132ade8ea88282623d623544d2acbb
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / SuccessEnvelopeProxy.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 SuccessEnvelopeProxy extends AbstractResponseEnvelopeProxy<RequestSuccess<?, ?>, SuccessEnvelope>
11         implements SuccessEnvelope.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 SuccessEnvelopeProxy() {
19         // for Externalizable
20     }
21
22     SuccessEnvelopeProxy(final SuccessEnvelope envelope) {
23         super(envelope);
24     }
25 }