BUG-2939: fixup dynamic nodes to cover overwrites
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / RecursiveDeleteCandidateNode.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.impl.schema.tree;
9
10 import com.google.common.base.Optional;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
14 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode;
15 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
16
17 final class RecursiveDeleteCandidateNode extends AbstractRecursiveCandidateNode {
18     RecursiveDeleteCandidateNode(final NormalizedNodeContainer<?, PathArgument, NormalizedNode<?, ?>> data) {
19         super(data);
20     }
21
22     @Override
23     public ModificationType getModificationType() {
24         return ModificationType.DELETE;
25     }
26
27     @Override
28     protected DataTreeCandidateNode createContainer(
29             final NormalizedNodeContainer<?, PathArgument, NormalizedNode<?, ?>> childData) {
30         return new RecursiveDeleteCandidateNode(childData);
31     }
32
33     @Override
34     public Optional<NormalizedNode<?, ?>> getDataAfter() {
35         return Optional.absent();
36     }
37
38     @Override
39     public Optional<NormalizedNode<?, ?>> getDataBefore() {
40         return dataOptional();
41     }
42
43     @Override
44     protected DataTreeCandidateNode createLeaf(final NormalizedNode<?, ?> childData) {
45         return new DeleteLeafCandidateNode(childData);
46     }
47 }