Move yang-common(-netty)
[yangtools.git] / codec / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / AbstractDataTreeCandidateNode.java
1 /*
2  * Copyright (c) 2015 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.yangtools.yang.data.codec.binfmt;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.util.Optional;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
15 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode;
16 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
17
18 /**
19  * Abstract base class for our internal implementation of {@link DataTreeCandidateNode},
20  * which we instantiate from a serialized stream. We do not retain the before-image and
21  * do not implement {@link #getModifiedChild(PathArgument)}, as that method is only
22  * useful for end users. Instances based on this class should never be leaked outside of
23  * this component.
24  */
25 abstract class AbstractDataTreeCandidateNode implements DataTreeCandidateNode {
26     private final ModificationType type;
27
28     AbstractDataTreeCandidateNode(final ModificationType type) {
29         this.type = requireNonNull(type);
30     }
31
32     @Override
33     public final Optional<DataTreeCandidateNode> getModifiedChild(final PathArgument identifier) {
34         throw new UnsupportedOperationException("Not implemented");
35     }
36
37     @Override
38     public final ModificationType getModificationType() {
39         return type;
40     }
41
42     @Override
43     public final Optional<NormalizedNode> getDataBefore() {
44         throw new UnsupportedOperationException("Before-image not available after serialization");
45     }
46 }