2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.md.sal.dom.store.impl.tree.data;
10 import java.util.Collections;
12 import org.opendaylight.controller.md.sal.dom.store.impl.tree.DataTreeCandidateNode;
13 import org.opendaylight.controller.md.sal.dom.store.impl.tree.ModificationType;
14 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
15 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier.PathArgument;
16 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
18 import com.google.common.base.Optional;
19 import com.google.common.base.Preconditions;
21 final class NoopDataTreeCandidate extends AbstractDataTreeCandidate {
22 private static final DataTreeCandidateNode ROOT = new DataTreeCandidateNode() {
24 public ModificationType getModificationType() {
25 return ModificationType.UNMODIFIED;
29 public Iterable<DataTreeCandidateNode> getChildNodes() {
30 return Collections.emptyList();
34 public PathArgument getIdentifier() {
35 throw new IllegalStateException("Attempted to read identifier of the no-operation change");
39 public Optional<NormalizedNode<?, ?>> getDataAfter() {
40 return Optional.absent();
44 public Optional<NormalizedNode<?, ?>> getDataBefore() {
45 return Optional.absent();
49 protected NoopDataTreeCandidate(final InstanceIdentifier rootPath, final ModifiedNode modificationRoot) {
51 Preconditions.checkArgument(modificationRoot.getType() == ModificationType.UNMODIFIED);
55 public DataTreeCandidateNode getRootNode() {