5e685c37373b3da25345d4404c7be1577f099a75
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / DeleteLeafCandidateNode.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 javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
14
15 final class DeleteLeafCandidateNode extends AbstractLeafCandidateNode {
16     DeleteLeafCandidateNode(final NormalizedNode<?, ?> data) {
17         super(data);
18     }
19
20     @Override
21     @Nonnull
22     public ModificationType getModificationType() {
23         return ModificationType.DELETE;
24     }
25
26     @Override
27     @Nonnull
28     public Optional<NormalizedNode<?, ?>> getDataAfter() {
29         return Optional.absent();
30     }
31
32     @Override
33     @Nonnull
34     public Optional<NormalizedNode<?, ?>> getDataBefore() {
35         return dataOptional();
36     }
37 }