Rename binding-runtime-dynamic to binding-loader
[yangtools.git] / common / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / UQNv1.java
1 /*
2  * Copyright (c) 2019 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.yangtools.yang.common;
9
10 import static com.google.common.base.Verify.verifyNotNull;
11 import static java.util.Objects.requireNonNull;
12
13 import java.io.Externalizable;
14 import java.io.IOException;
15 import java.io.ObjectInput;
16 import java.io.ObjectOutput;
17 import java.io.Serial;
18 import org.opendaylight.yangtools.yang.common.UnresolvedQName.Unqualified;
19
20 /**
21  * Externalizable proxy for {@link Unqualified}.
22  */
23 final class UQNv1 implements Externalizable {
24     @Serial
25     private static final long serialVersionUID = 1L;
26
27     private Unqualified qname;
28
29     @SuppressWarnings("checkstyle:redundantModifier")
30     public UQNv1() {
31         // For Externalizable
32     }
33
34     UQNv1(final Unqualified qname) {
35         this.qname = requireNonNull(qname);
36     }
37
38     @Override
39     public void writeExternal(final ObjectOutput out) throws IOException {
40         qname.writeTo(out);
41     }
42
43     @Override
44     public void readExternal(final ObjectInput in) throws IOException {
45         qname = Unqualified.readFrom(in);
46     }
47
48     @Serial
49     Object readResolve() {
50         return verifyNotNull(qname);
51     }
52 }