455e00e5581d3c6716e6e7306aafe0fb1528d8c6
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / RE.java
1 /*
2  * Copyright (c) 2022 PANTHEON.tech, 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.concepts;
9
10 import static com.google.common.base.Verify.verifyNotNull;
11 import static java.util.Objects.requireNonNull;
12
13 /**
14  * Serialization proxy for {@link RequestEnvelope}.
15  */
16 final class RE implements RequestEnvelope.SerialForm {
17     @java.io.Serial
18     private static final long serialVersionUID = 1L;
19
20     private RequestEnvelope envelope;
21
22     @SuppressWarnings("checkstyle:RedundantModifier")
23     public RE() {
24         // for Externalizable
25     }
26
27     RE(final RequestEnvelope envelope) {
28         this.envelope = requireNonNull(envelope);
29     }
30
31     @Override
32     public RequestEnvelope envelope() {
33         return verifyNotNull(envelope);
34     }
35
36     @Override
37     public void setEnvelope(final RequestEnvelope envelope) {
38         this.envelope = requireNonNull(envelope);
39     }
40
41     @Override
42     public Object readResolve() {
43         return envelope();
44     }
45 }