BUG 2412 remove CompositeNode from RestconfImpl codeBase
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / EmptyNodeWrapper.java
diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/EmptyNodeWrapper.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/EmptyNodeWrapper.java
deleted file mode 100644 (file)
index 5a310e8..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.controller.sal.restconf.impl;
-
-import com.google.common.base.Preconditions;
-import java.net.URI;
-import java.util.Collections;
-import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.data.api.CompositeNode;
-import org.opendaylight.yangtools.yang.data.api.Node;
-import org.opendaylight.yangtools.yang.data.impl.NodeFactory;
-
-/**
- * @deprecated class will be removed in Lithium release
- */
-@Deprecated
-public final class EmptyNodeWrapper implements NodeWrapper<Node<?>>, Node<Void> {
-
-    private Node<?> unwrapped;
-
-    private String localName;
-    private URI namespace;
-    private QName name;
-
-    private boolean composite;
-
-    public boolean isComposite() {
-        return composite;
-    }
-
-    public void setComposite(final boolean composite) {
-        this.composite = composite;
-    }
-
-    public EmptyNodeWrapper(final URI namespace, final String localName) {
-        this.localName = Preconditions.checkNotNull(localName);
-        this.namespace = namespace;
-    }
-
-    @Override
-    public void setQname(final QName name) {
-        Preconditions.checkState(unwrapped == null, "Cannot change the object, due to data inconsistencies.");
-        this.name = name;
-    }
-
-    @Override
-    public QName getQname() {
-        return name;
-    }
-
-    @Override
-    public String getLocalName() {
-        if (unwrapped != null) {
-            return unwrapped.getNodeType().getLocalName();
-        }
-        return localName;
-    }
-
-    @Override
-    public URI getNamespace() {
-        if (unwrapped != null) {
-            return unwrapped.getNodeType().getNamespace();
-        }
-        return namespace;
-    }
-
-    @Override
-    public void setNamespace(final URI namespace) {
-        Preconditions.checkState(unwrapped == null, "Cannot change the object, due to data inconsistencies.");
-        this.namespace = namespace;
-    }
-
-    @Override
-    public boolean isChangeAllowed() {
-        return unwrapped == null ? true : false;
-    }
-
-    @Override
-    public Node<?> unwrap() {
-        if (unwrapped == null) {
-            if (name == null) {
-                Preconditions.checkNotNull(namespace);
-                name = new QName(namespace, localName);
-            }
-            if (composite) {
-                unwrapped = NodeFactory.createImmutableCompositeNode(name, null, Collections.<Node<?>> emptyList(),
-                        null);
-            } else {
-                unwrapped = NodeFactory.createImmutableSimpleNode(name, null, null);
-            }
-            namespace = null;
-            localName = null;
-            name = null;
-        }
-        return unwrapped;
-    }
-
-    @Override
-    public QName getNodeType() {
-        return unwrap().getNodeType();
-    }
-
-    @Override
-    @Deprecated
-    public CompositeNode getParent() {
-        return unwrap().getParent();
-    }
-
-    @Override
-    public Void getValue() {
-        return null;
-    }
-
-    @Override
-    public QName getKey() {
-        return unwrap().getKey();
-    }
-
-    @Override
-    public Void setValue(final Void value) {
-        return null;
-    }
-
-}